mirror of
https://github.com/wekan/wekan.git
synced 2026-01-06 09:38:49 +01:00
Fix a recurrent English typo
This commit is contained in:
parent
54bc9d0dcb
commit
74fba0a817
10 changed files with 25 additions and 25 deletions
|
|
@ -67,7 +67,7 @@ BlazeComponent.extendComponent({
|
|||
if (MultiSelection.isActive() || evt.shiftKey) {
|
||||
evt.stopImmediatePropagation();
|
||||
evt.preventDefault();
|
||||
const methodName = evt.shiftKey ? 'toogleRange' : 'toogle';
|
||||
const methodName = evt.shiftKey ? 'toggleRange' : 'toggle';
|
||||
MultiSelection[methodName](this.currentData()._id);
|
||||
|
||||
// If the card is already selected, we want to de-select it.
|
||||
|
|
@ -87,7 +87,7 @@ BlazeComponent.extendComponent({
|
|||
toggleMultiSelection(evt) {
|
||||
evt.stopPropagation();
|
||||
evt.preventDefault();
|
||||
MultiSelection.toogle(this.currentData()._id);
|
||||
MultiSelection.toggle(this.currentData()._id);
|
||||
},
|
||||
|
||||
events() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue