mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-30 03:00:40 +00:00
Fix: Missing callbacks for batch pause/resume (#3813)
This commit is contained in:
parent
04b8681cfb
commit
156614b303
1 changed files with 2 additions and 2 deletions
|
@ -346,7 +346,7 @@ export default {
|
||||||
pauseSelected() {
|
pauseSelected() {
|
||||||
Object.keys(this.selectedMonitors)
|
Object.keys(this.selectedMonitors)
|
||||||
.filter(id => this.$root.monitorList[id].active)
|
.filter(id => this.$root.monitorList[id].active)
|
||||||
.forEach(id => this.$root.getSocket().emit("pauseMonitor", id));
|
.forEach(id => this.$root.getSocket().emit("pauseMonitor", id, () => {}));
|
||||||
|
|
||||||
this.cancelSelectMode();
|
this.cancelSelectMode();
|
||||||
},
|
},
|
||||||
|
@ -357,7 +357,7 @@ export default {
|
||||||
resumeSelected() {
|
resumeSelected() {
|
||||||
Object.keys(this.selectedMonitors)
|
Object.keys(this.selectedMonitors)
|
||||||
.filter(id => !this.$root.monitorList[id].active)
|
.filter(id => !this.$root.monitorList[id].active)
|
||||||
.forEach(id => this.$root.getSocket().emit("resumeMonitor", id));
|
.forEach(id => this.$root.getSocket().emit("resumeMonitor", id, () => {}));
|
||||||
|
|
||||||
this.cancelSelectMode();
|
this.cancelSelectMode();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue