diff --git a/app/assets/javascripts/discourse/controllers/tags-show.js.es6 b/app/assets/javascripts/discourse/controllers/tags-show.js.es6 index e7f607174ec..001ff3dd05a 100644 --- a/app/assets/javascripts/discourse/controllers/tags-show.js.es6 +++ b/app/assets/javascripts/discourse/controllers/tags-show.js.es6 @@ -116,7 +116,7 @@ export default Ember.Controller.extend(BulkTopicSelection, { deleteTag() { const self = this; const topicsLength = this.get('list.topic_list.topics.length'); - const confirmText = topicsLength === 0 ? I18n.t("tagging.delete_confirm.no_topics") : I18n.t("tagging.delete_confirm", {count: topicsLength}) + const confirmText = topicsLength === 0 ? I18n.t("tagging.delete_confirm.no_topics") : I18n.t("tagging.delete_confirm", {count: topicsLength}); bootbox.confirm(confirmText, function(result) { if (!result) { return; }