mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Fix copy/paste error in Log view
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user