From f9d0fea0adc53f30db2af2a64e23df5022006de9 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Tue, 19 Jul 2016 12:39:11 -0400 Subject: [PATCH] FIX: user tag prefs should allow any tag and any number of tags --- .../javascripts/discourse/templates/user/preferences.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/javascripts/discourse/templates/user/preferences.hbs b/app/assets/javascripts/discourse/templates/user/preferences.hbs index a79116260..2644c964e 100644 --- a/app/assets/javascripts/discourse/templates/user/preferences.hbs +++ b/app/assets/javascripts/discourse/templates/user/preferences.hbs @@ -280,17 +280,17 @@
- {{tag-chooser tags=model.watched_tags blacklist=selectedTags allowCreate=false placeholder=""}} + {{tag-chooser tags=model.watched_tags blacklist=selectedTags allowCreate=false placeholder="" everyTag="true" unlimitedTagCount="true"}}
{{i18n 'user.watched_tags_instructions'}}
- {{tag-chooser tags=model.tracked_tags blacklist=selectedTags allowCreate=false placeholder=""}} + {{tag-chooser tags=model.tracked_tags blacklist=selectedTags allowCreate=false placeholder="" everyTag="true" unlimitedTagCount="true"}}
{{i18n 'user.tracked_tags_instructions'}}
- {{tag-chooser tags=model.muted_tags blacklist=selectedTags allowCreate=false placeholder=""}} + {{tag-chooser tags=model.muted_tags blacklist=selectedTags allowCreate=false placeholder="" everyTag="true" unlimitedTagCount="true"}}
{{i18n 'user.muted_tags_instructions'}}