Browse Source

Fix: reset editMonitor after save

pull/278/head
Nelson Chan 3 years ago
parent
commit
9b5abf9bb1
  1. 3
      src/pages/EditMonitor.vue

3
src/pages/EditMonitor.vue

@ -347,7 +347,8 @@ export default {
this.$root.getSocket().emit("editMonitor", this.monitor, (res) => {
this.processing = false;
this.$root.toastRes(res)
this.$root.toastRes(res);
this.init();
})
}
},

Loading…
Cancel
Save