From 239a1f347112e80571edad40a2c87243bacf3a7b Mon Sep 17 00:00:00 2001 From: guerler Date: Mon, 22 Jul 2024 07:17:12 +0300 Subject: [PATCH] Restore interactive tools watcher --- client/src/entry/analysis/App.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/src/entry/analysis/App.vue b/client/src/entry/analysis/App.vue index f87013e6cf45..3e19bc079f84 100644 --- a/client/src/entry/analysis/App.vue +++ b/client/src/entry/analysis/App.vue @@ -61,6 +61,7 @@ import { ref, watch } from "vue"; import short from "@/components/plugins/short"; import { useRouteQueryBool } from "@/composables/route"; +import { useEntryPointStore } from "@/stores/entryPointStore"; import { useHistoryStore } from "@/stores/historyStore"; import { useNotificationsStore } from "@/stores/notificationsStore"; import { useUserStore } from "@/stores/userStore"; @@ -171,6 +172,9 @@ export default { this.Galaxy.currHistoryPanel = new HistoryPanelProxy(); this.Galaxy.modal = new Modal.View(); this.Galaxy.frame = this.windowManager; + if (this.Galaxy.config.interactivetools_enable) { + this.startWatchingEntryPoints(); + } if (this.Galaxy.config.enable_notification_system) { this.startWatchingNotifications(); } @@ -188,6 +192,10 @@ export default { } }, methods: { + startWatchingEntryPoints() { + const entryPointStore = useEntryPointStore(); + entryPointStore.startWatchingEntryPoints(); + }, startWatchingNotifications() { const notificationsStore = useNotificationsStore(); notificationsStore.startWatchingNotifications();