From 3c1e005feafa5aeeb1571fcc0ef110ff2b6932df Mon Sep 17 00:00:00 2001 From: Maja Komel Date: Fri, 6 Oct 2017 15:42:53 +0200 Subject: [PATCH] missing semicolon --- app/assets/javascripts/discourse/controllers/tags-show.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/controllers/tags-show.js.es6 b/app/assets/javascripts/discourse/controllers/tags-show.js.es6 index e7f607174e..001ff3dd05 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; }