diff --git a/README.md b/README.md index 1b4c885d0..34e34020f 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,7 @@ Requirements: - Platform - ✅ Major Linux distros such as Debian, Ubuntu, CentOS, Fedora and ArchLinux etc. - ✅ Windows 10 (x64), Windows Server 2012 R2 (x64) or higher + - ❌ FreeBSD / OpenBSD / NetBSD - ❌ Replit / Heroku - [Node.js](https://nodejs.org/en/download/) 18 / 20.4 - [npm](https://docs.npmjs.com/cli/) 9 diff --git a/src/components/TagsManager.vue b/src/components/TagsManager.vue index 19c8e481b..a8a96ccbb 100644 --- a/src/components/TagsManager.vue +++ b/src/components/TagsManager.vue @@ -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);