Fix: Remove extra fields on clone

This commit is contained in:
Nelson Chan 2023-06-15 00:58:45 +08:00
parent 71c34694b7
commit 19fc7d31e6

View file

@ -823,7 +823,6 @@ message HealthCheckResponse {
// Only return groups which arent't itself and one of its decendants
sortedMonitorList() {
let result = Object.values(this.$root.monitorList);
console.log(this.monitor.childrenIDs);
// Only groups, not itself, not a decendant
result = result.filter(
@ -1041,6 +1040,11 @@ message HealthCheckResponse {
this.monitor.id = undefined; // Remove id when cloning as we want a new id
this.monitor.includeSensitiveData = undefined;
this.monitor.maintenance = undefined;
// group monitor fields
this.monitor.childrenIDs = undefined;
this.monitor.forceInactive = undefined;
this.monitor.pathName = undefined;
this.monitor.name = this.$t("cloneOf", [ this.monitor.name ]);
this.$refs.tagsManager.newTags = this.monitor.tags.map((monitorTag) => {
return {