We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92dbb3e commit 0e4583bCopy full SHA for 0e4583b
2 files changed
web_client/src/main.ts
@@ -49,7 +49,11 @@ Sentry.init({
49
// If user closes the tab, we want them to be logged out if they return to the page
50
await setupHeartbeat('miqa_logout_heartbeat', async () => { oauthClient.logout(); });
51
await djangoRest.restoreLogin(store);
52
- await Promise.all([store.dispatch.loadMe(), store.dispatch.loadConfiguration()]);
+ await Promise.all([
53
+ store.dispatch.reset(),
54
+ store.dispatch.loadMe(),
55
+ store.dispatch.loadConfiguration(),
56
+ ]);
57
58
new Vue({
59
vuetify,
web_client/src/views/Scan.vue
@@ -51,6 +51,7 @@ export default {
'scanFrames',
'loadingFrame',
'errorLoadingFrame',
+ 'currentScan',
]),
currentScanFrames() {
return this.scanFrames[this.currentScan.id];
0 commit comments