From dda248f5dff2b3f3bd514d96aff1edad3913b97b Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Fri, 2 Mar 2018 15:56:15 -0500 Subject: [PATCH] FIX: tag input in composer was not respecting tag group rules --- .../javascripts/select-kit/components/mini-tag-chooser.js.es6 | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/javascripts/select-kit/components/mini-tag-chooser.js.es6 b/app/assets/javascripts/select-kit/components/mini-tag-chooser.js.es6 index b6f445a4f7..de9b0661f6 100644 --- a/app/assets/javascripts/select-kit/components/mini-tag-chooser.js.es6 +++ b/app/assets/javascripts/select-kit/components/mini-tag-chooser.js.es6 @@ -188,6 +188,7 @@ export default ComboBox.extend(Tags, { categoryId: this.get("categoryId") }; if (this.get("selectedTags")) data.selected_tags = this.get("selectedTags").slice(0, 100); + if (!this.get("everyTag")) data.filterForInput = true; this.searchTags("/tags/filter/search", data, this._transformJson); },