Ignore loading indicator in log tab.

Temporary “fix” to stop annoying users until bug #210 gets fixed.
This commit is contained in:
D. Berge
2022-05-01 22:05:49 +02:00
parent a2bd614b17
commit e40ea33345

View File

@@ -207,7 +207,7 @@
</v-menu> </v-menu>
<!-- END Context menu for log entries --> <!-- END Context menu for log entries -->
<v-container fluid class="pa-0 pb-2" v-if="sequenceData"> <v-container fluid class="pa-0 pb-2" v-if="true">
<v-row no-gutters class="d-flex flex-column flex-sm-row"> <v-row no-gutters class="d-flex flex-column flex-sm-row">
<v-col cols="6" class="d-flex flex-column"> <v-col cols="6" class="d-flex flex-column">
<v-card outlined tile class="flex-grow-1"> <v-card outlined tile class="flex-grow-1">
@@ -495,6 +495,11 @@ export default {
contextMenuX: 0, contextMenuX: 0,
contextMenuY: 0, contextMenuY: 0,
contextMenuItem: null contextMenuItem: null
// FIXME Temporary kludge to cope with
// https://gitlab.com/wgp/dougal/software/-/issues/210
// until it gets fixed.
,loading: false
} }
}, },
@@ -550,7 +555,7 @@ export default {
} }
}, },
...mapGetters(['user', 'writeaccess', 'loading', 'online', 'sequence', 'line', 'point', 'position', 'timestamp', 'lineName', 'serverEvent']), ...mapGetters(['user', 'writeaccess', 'online', 'sequence', 'line', 'point', 'position', 'timestamp', 'lineName', 'serverEvent']),
...mapState({projectSchema: state => state.project.projectSchema}) ...mapState({projectSchema: state => state.project.projectSchema})
}, },