diff --git a/app/assets/javascripts/discourse/app/controllers/composer.js b/app/assets/javascripts/discourse/app/controllers/composer.js index 9cb9d444f42..2d1c9a0e89d 100644 --- a/app/assets/javascripts/discourse/app/controllers/composer.js +++ b/app/assets/javascripts/discourse/app/controllers/composer.js @@ -1008,7 +1008,7 @@ export default Controller.extend({ this.model.set("categoryId", opts.topicCategoryId); } - if (opts.topicTags && !this.site.mobileView && this.site.can_tag_topics) { + if (opts.topicTags && this.site.can_tag_topics) { let tags = escapeExpression(opts.topicTags) .split(",") .slice(0, this.siteSettings.max_tags_per_topic);