mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-19 21:52:35 +02:00
Fix monitor tags deletion (#5463)
This commit is contained in:
parent
fd55659c2b
commit
97cbaac5d9
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue