missing semicolon

This commit is contained in:
Maja Komel 2017-10-06 15:42:53 +02:00
parent 13cc0fd665
commit 3c1e005fea

View File

@ -116,7 +116,7 @@ export default Ember.Controller.extend(BulkTopicSelection, {
deleteTag() { deleteTag() {
const self = this; const self = this;
const topicsLength = this.get('list.topic_list.topics.length'); 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) { bootbox.confirm(confirmText, function(result) {
if (!result) { return; } if (!result) { return; }