Compare commits

...

2 Commits

Author SHA1 Message Date
D. Berge
8eb49e5e09 Disable the sequence comments altogether in the log tab.
Again, a temporary kludge:

> On processing PC and Nav logging PC- LOG went blank,
> Can't see any records
2022-05-10 22:00:09 +02:00
D. Berge
e40ea33345 Ignore loading indicator in log tab.
Temporary “fix” to stop annoying users until bug #210 gets fixed.
2022-05-10 22:00:09 +02:00

View File

@@ -207,7 +207,7 @@
</v-menu>
<!-- 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="false">
<v-row no-gutters class="d-flex flex-column flex-sm-row">
<v-col cols="6" class="d-flex flex-column">
<v-card outlined tile class="flex-grow-1">
@@ -495,6 +495,11 @@ export default {
contextMenuX: 0,
contextMenuY: 0,
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})
},