From 3af27a6d831afdc1eaec33ea1ece5e5a62760946 Mon Sep 17 00:00:00 2001 From: Neil Lalonde <neillalonde@gmail.com> Date: Tue, 26 Jul 2016 16:03:54 -0400 Subject: [PATCH] FIX: category settings should not limit number of tags --- .../discourse/templates/components/edit-category-tags.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/templates/components/edit-category-tags.hbs b/app/assets/javascripts/discourse/templates/components/edit-category-tags.hbs index abd70f230..df6544d77 100644 --- a/app/assets/javascripts/discourse/templates/components/edit-category-tags.hbs +++ b/app/assets/javascripts/discourse/templates/components/edit-category-tags.hbs @@ -1,6 +1,6 @@ <section class="field"> <p>{{i18n 'category.tags_allowed_tags'}}</p> - {{tag-chooser placeholderKey="category.tags_placeholder" tags=category.allowed_tags}} + {{tag-chooser placeholderKey="category.tags_placeholder" tags=category.allowed_tags everyTag="true" unlimitedTagCount="true"}} <p>{{i18n 'category.tags_allowed_tag_groups'}}</p> {{tag-group-chooser placeholderKey="category.tag_groups_placeholder" tagGroups=category.allowed_tag_groups}}