Fix copy/paste error in Log view

This commit is contained in:
D. Berge
2020-10-03 00:36:53 +02:00
parent 2ca83f9a60
commit 39256a4917

View File

@@ -358,7 +358,7 @@ export default {
watch: {
options: {
handler () {
//this.getLines();
//this.getEvents();
},
deep: true
},
@@ -386,13 +386,13 @@ export default {
queuedReload (newVal, oldVal) {
if (newVal && !oldVal && !this.loading) {
this.getLines();
this.getEvents();
}
},
loading (newVal, oldVal) {
if (!newVal && oldVal && this.queuedReload) {
this.getLines();
this.getEvents();
}
}