Skip to content

Commit 6742338

Browse files
committed
Initiate history watching in app
1 parent 5361265 commit 6742338

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/src/entry/analysis/App.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ import { useRoute } from "vue-router/composables";
6363
import short from "@/components/plugins/short";
6464
import { useRouteQueryBool } from "@/composables/route";
6565
import { useEntryPointStore } from "@/stores/entryPointStore";
66-
import { useHistoryStore } from "@/stores/historyStore";
6766
import { useNotificationsStore } from "@/stores/notificationsStore";
6867
import { useTourStore } from "@/stores/tourStore";
6968
import { useUserStore } from "@/stores/userStore";
@@ -75,6 +74,8 @@ import TourRunner from "@/components/Tour/TourRunner.vue";
7574
import Masthead from "components/Masthead/Masthead.vue";
7675
import UploadModal from "components/Upload/UploadModal.vue";
7776
77+
import { startWatchingHistory } from "watch/watchHistoryProvided";
78+
7879
export 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() {

0 commit comments

Comments
 (0)