Skip to content

Commit

Permalink
Fix monitor tags deletion (#5463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ionys320 authored Dec 21, 2024
1 parent fd55659 commit 97cbaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TagsManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default {
return tagOptions;
},
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() {
return colorOptions(this);
Expand Down

0 comments on commit 97cbaac

Please sign in to comment.