summaryrefslogtreecommitdiffstats
path: root/webapp/src
diff options
context:
space:
mode:
authorChristian Hofmaier2019-04-16 14:27:02 +0200
committerChristian Hofmaier2019-04-16 14:27:02 +0200
commitc82cf1a64bd7e5770c89d94557efeb408d810a7b (patch)
treefbb8ec50a783534c391eafdfff3c8f29def4b1ae /webapp/src
parentmerge (diff)
downloadbas-c82cf1a64bd7e5770c89d94557efeb408d810a7b.tar.gz
bas-c82cf1a64bd7e5770c89d94557efeb408d810a7b.tar.xz
bas-c82cf1a64bd7e5770c89d94557efeb408d810a7b.zip
[eventmanager] fix blacklist clients
Diffstat (limited to 'webapp/src')
-rw-r--r--webapp/src/components/EventModuleEdit.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/EventModuleEdit.vue b/webapp/src/components/EventModuleEdit.vue
index 437fc02..c4ad797 100644
--- a/webapp/src/components/EventModuleEdit.vue
+++ b/webapp/src/components/EventModuleEdit.vue
@@ -635,7 +635,7 @@ export default {
this.blackgroupList = response.data.subgroups
this.blackclientList = response.data.clients
this.blacklistGroups = this.blacklistGroups.filter(g => this.blackgroupList.map(x => x.id).indexOf(g.id) !== -1)
- this.blacklistClients = this.blacklistGroups.filter(c => this.blacklistClients.map(x => x.id).indexOf(c.id) !== -1)
+ this.blacklistClients = this.blacklistClients.filter(c => this.blacklistClients.map(x => x.id).indexOf(c.id) !== -1)
} else {
this.blackgroupList = []
this.blackclientList = []