mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:50:26 -06:00
missing semicolon
This commit is contained in:
parent
13cc0fd665
commit
3c1e005fea
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user