diff --git a/app/assets/javascripts/discourse/models/topic.js.es6 b/app/assets/javascripts/discourse/models/topic.js.es6 index 6df5cbe8c27..bf37af7917e 100644 --- a/app/assets/javascripts/discourse/models/topic.js.es6 +++ b/app/assets/javascripts/discourse/models/topic.js.es6 @@ -101,7 +101,7 @@ const Topic = RestModel.extend({ const newTags = []; tags.forEach(function(tag){ - if (title.toLowerCase().indexOf(tag) === -1 || Discourse.SiteSettings.staff_tags.indexOf(tag) !== -1) { + if (title.toLowerCase().indexOf(tag) === -1) { newTags.push(tag); } });