From 919e629bd737ed86d0761a4bdc038d2be4ff0e8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 19 May 2022 14:07:07 +0200 Subject: [PATCH] Web: expose `notifs` as window-global variable for debugging --- web/app/src/main.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/app/src/main.js b/web/app/src/main.js index 069e0ee5..c255705b 100644 --- a/web/app/src/main.js +++ b/web/app/src/main.js @@ -21,4 +21,6 @@ app.mount('#app') // For debugging. import { useJobs } from '@/stores/jobs'; +import { useNotifs } from '@/stores/notifications'; window.jobs = useJobs(); +window.notifs = useNotifs();