mirror of
https://github.com/wekan/wekan.git
synced 2025-12-28 13:18: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
|
|
@ -6,14 +6,14 @@ Mousetrap.bind('?', () => {
|
|||
});
|
||||
|
||||
Mousetrap.bind('w', () => {
|
||||
Sidebar.toogle();
|
||||
Sidebar.toggle();
|
||||
});
|
||||
|
||||
Mousetrap.bind('q', () => {
|
||||
const currentBoardId = Session.get('currentBoard');
|
||||
const currentUserId = Meteor.userId();
|
||||
if (currentBoardId && currentUserId) {
|
||||
Filter.members.toogle(currentUserId);
|
||||
Filter.members.toggle(currentUserId);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ Mousetrap.bind(['down', 'up'], (evt, key) => {
|
|||
Template.keyboardShortcuts.helpers({
|
||||
mapping: [{
|
||||
keys: ['W'],
|
||||
action: 'shortcut-toogle-sidebar',
|
||||
action: 'shortcut-toggle-sidebar',
|
||||
}, {
|
||||
keys: ['Q'],
|
||||
action: 'shortcut-filter-my-cards',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue