Skip to content

Commit 940d2a8

Browse files
authored
Merge branch 'master' into fix-push-examples
2 parents 8e51bde + be2faf6 commit 940d2a8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Requirements:
6262
- Platform
6363
- ✅ Major Linux distros such as Debian, Ubuntu, CentOS, Fedora and ArchLinux etc.
6464
- ✅ Windows 10 (x64), Windows Server 2012 R2 (x64) or higher
65+
- ❌ FreeBSD / OpenBSD / NetBSD
6566
- ❌ Replit / Heroku
6667
- [Node.js](https://nodejs.org/en/download/) 18 / 20.4
6768
- [npm](https://docs.npmjs.com/cli/) 9

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)