Skip to content

Commit 97cbaac

Browse files
authored
Fix monitor tags deletion (#5463)
1 parent fd55659 commit 97cbaac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TagsManager.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export default {
197197
return tagOptions;
198198
},
199199
selectedTags() {
200-
return this.preSelectedTags.concat(this.newTags).filter(tag => !this.deleteTags.find(monitorTag => monitorTag.id === tag.id));
200+
return this.preSelectedTags.concat(this.newTags).filter(tag => !this.deleteTags.find(monitorTag => monitorTag.tag_id === tag.tag_id));
201201
},
202202
colorOptions() {
203203
return colorOptions(this);

0 commit comments

Comments
 (0)