Fix monitor tags deletion (#5463)
This commit is contained in:
parent
fd55659c2b
commit
97cbaac5d9
|
@ -197,7 +197,7 @@ export default {
|
||||||
return tagOptions;
|
return tagOptions;
|
||||||
},
|
},
|
||||||
selectedTags() {
|
selectedTags() {
|
||||||
return this.preSelectedTags.concat(this.newTags).filter(tag => !this.deleteTags.find(monitorTag => monitorTag.id === tag.id));
|
return this.preSelectedTags.concat(this.newTags).filter(tag => !this.deleteTags.find(monitorTag => monitorTag.tag_id === tag.tag_id));
|
||||||
},
|
},
|
||||||
colorOptions() {
|
colorOptions() {
|
||||||
return colorOptions(this);
|
return colorOptions(this);
|
||||||
|
|
Loading…
Reference in New Issue