Skip to content

Commit

Permalink
Restore interactive tools watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Jul 22, 2024
1 parent d3fb3fd commit 239a1f3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/entry/analysis/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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();
}
Expand All @@ -188,6 +192,10 @@ export default {
}
},
methods: {
startWatchingEntryPoints() {
const entryPointStore = useEntryPointStore();
entryPointStore.startWatchingEntryPoints();
},
startWatchingNotifications() {
const notificationsStore = useNotificationsStore();
notificationsStore.startWatchingNotifications();
Expand Down

0 comments on commit 239a1f3

Please sign in to comment.