mirror of
https://github.com/wekan/wekan.git
synced 2026-02-06 00:21:48 +01:00
Fix typos.
Thanks to xet7 !
This commit is contained in:
parent
d4e3075fcc
commit
d0ea5bf500
1 changed files with 2 additions and 2 deletions
|
|
@ -239,7 +239,7 @@ BlazeComponent.extendComponent({
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
},
|
},
|
||||||
'click .js-clone-board'(evt) {
|
'click .js-clone-board'(evt) {
|
||||||
if (confirm(TAPi18n.__('duplicate-board-confirm')) {
|
if (confirm(TAPi18n.__('duplicate-board-confirm'))) {
|
||||||
let title =
|
let title =
|
||||||
getSlug(ReactiveCache.getBoard(this.currentData()._id).title) ||
|
getSlug(ReactiveCache.getBoard(this.currentData()._id).title) ||
|
||||||
'cloned-board';
|
'cloned-board';
|
||||||
|
|
@ -268,7 +268,7 @@ BlazeComponent.extendComponent({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'click .js-archive-board'(evt) {
|
'click .js-archive-board'(evt) {
|
||||||
if (confirm(TAPi18n.__('archive-board-confirm')) {
|
if (confirm(TAPi18n.__('archive-board-confirm'))) {
|
||||||
const boardId = this.currentData()._id;
|
const boardId = this.currentData()._id;
|
||||||
Meteor.call('archiveBoard', boardId);
|
Meteor.call('archiveBoard', boardId);
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue