mirror of
https://github.com/wekan/wekan.git
synced 2026-02-03 23:21:47 +01:00
Fix move selection
This fixes https://github.com/wekan/wekan/issues/3119.
This commit is contained in:
parent
8eafa1ac66
commit
5c02850bc1
3 changed files with 46 additions and 3 deletions
|
|
@ -157,8 +157,9 @@ Template.disambiguateMultiMemberPopup.events({
|
|||
});
|
||||
|
||||
Template.moveSelectionPopup.events({
|
||||
'click .js-select-list'() {
|
||||
mutateSelectedCards('move', this._id);
|
||||
'click .js-select-list'(event) {
|
||||
// Move the minicard to the end of the target list
|
||||
mutateSelectedCards('moveToEndOfList', { listId: this._id });
|
||||
EscapeActions.executeUpTo('multiselection');
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue