File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
client/src/entry/analysis Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ import { useRoute } from "vue-router/composables";
6363import short from " @/components/plugins/short" ;
6464import { useRouteQueryBool } from " @/composables/route" ;
6565import { useEntryPointStore } from " @/stores/entryPointStore" ;
66- import { useHistoryStore } from " @/stores/historyStore" ;
6766import { useNotificationsStore } from " @/stores/notificationsStore" ;
6867import { useTourStore } from " @/stores/tourStore" ;
6968import { useUserStore } from " @/stores/userStore" ;
@@ -75,6 +74,8 @@ import TourRunner from "@/components/Tour/TourRunner.vue";
7574import Masthead from " components/Masthead/Masthead.vue" ;
7675import UploadModal from " components/Upload/UploadModal.vue" ;
7776
77+ import { startWatchingHistory } from " watch/watchHistoryProvided" ;
78+
7879export default {
7980 components: {
8081 Alert,
@@ -197,6 +198,8 @@ export default {
197198 if (this .Galaxy .config .enable_notification_system ) {
198199 this .startWatchingNotifications ();
199200 }
201+ // start watching the history with continuous queries
202+ startWatchingHistory ();
200203 }
201204 },
202205 created () {
You can’t perform that action at this time.
0 commit comments