Fix move selection

This fixes https://github.com/wekan/wekan/issues/3119.
This commit is contained in:
Marc Hartmayer 2020-05-25 21:01:51 +02:00
parent 8eafa1ac66
commit 5c02850bc1
3 changed files with 46 additions and 3 deletions

View file

@ -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');
},
});