瀏覽代碼

Fix typos.

Thanks to xet7 !
Lauri Ojansivu 1 月之前
父節點
當前提交
d0ea5bf500
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      client/components/boards/boardsList.js

+ 2 - 2
client/components/boards/boardsList.js

@@ -239,7 +239,7 @@ BlazeComponent.extendComponent({
           evt.preventDefault();
         },
         'click .js-clone-board'(evt) {
-          if (confirm(TAPi18n.__('duplicate-board-confirm')) {
+          if (confirm(TAPi18n.__('duplicate-board-confirm'))) {
             let title =
               getSlug(ReactiveCache.getBoard(this.currentData()._id).title) ||
               'cloned-board';
@@ -268,7 +268,7 @@ BlazeComponent.extendComponent({
           }
         },
         'click .js-archive-board'(evt) {
-          if (confirm(TAPi18n.__('archive-board-confirm')) {
+          if (confirm(TAPi18n.__('archive-board-confirm'))) {
             const boardId = this.currentData()._id;
             Meteor.call('archiveBoard', boardId);
             evt.preventDefault();