mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 13:45:17 +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');
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ template(name="swimlane")
|
|||
.swimlane
|
||||
+swimlaneHeader
|
||||
unless collapseSwimlane
|
||||
.swimlane.js-lists.js-swimlane
|
||||
.swimlane.js-lists.js-swimlane(id="swimlane-{{_id}}")
|
||||
if isMiniScreen
|
||||
if currentListIsInThisSwimlane _id
|
||||
+list(currentList)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue