Merge branch 'louislam:master' into feature/time-format

This commit is contained in:
Mohammad Jibin 2023-10-08 13:36:16 +05:30 committed by GitHub
commit 556d98754d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -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();
}, },

View file

@ -2,7 +2,7 @@
// Common Util for frontend and backend // Common Util for frontend and backend
// //
// DOT NOT MODIFY util.js! // DOT NOT MODIFY util.js!
// Need to run "tsc" to compile if there are any changes. // Need to run "npm run tsc" to compile if there are any changes.
// //
// Backend uses the compiled file util.js // Backend uses the compiled file util.js
// Frontend uses util.ts // Frontend uses util.ts

View file

@ -1,7 +1,7 @@
// Common Util for frontend and backend // Common Util for frontend and backend
// //
// DOT NOT MODIFY util.js! // DOT NOT MODIFY util.js!
// Need to run "tsc" to compile if there are any changes. // Need to run "npm run tsc" to compile if there are any changes.
// //
// Backend uses the compiled file util.js // Backend uses the compiled file util.js
// Frontend uses util.ts // Frontend uses util.ts