From 6d8407ff94adb72cc57bc36a43c6e740ad8e0a6d Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Thu, 18 Jan 2018 17:39:50 +0100 Subject: [PATCH] fix tags selection in groups --- website/client/components/group-plans/taskInformation.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/client/components/group-plans/taskInformation.vue b/website/client/components/group-plans/taskInformation.vue index 2535712b79..d3a1753a5c 100644 --- a/website/client/components/group-plans/taskInformation.vue +++ b/website/client/components/group-plans/taskInformation.vue @@ -29,9 +29,9 @@ type="checkbox", :checked="isTagSelected(tag)", @change="toggleTag(tag)", - :id="`tag-${tagIndex}`", + :id="`tag-${tagsType.key}-${tagIndex}`", ) - label.custom-control-label(:for="`tag-${tagIndex}`") {{ tag.name }} + label.custom-control-label(:for="`tag-${tagsType.key}-${tagIndex}`") {{ tag.name }} .filter-panel-footer.clearfix template(v-if="editingTags === true")