Merge pull request #4582 from mfilser/move_copy_card_closes_popup_if_done

Move/Copy card closes now the popup if done
This commit is contained in:
Lauri Ojansivu 2022-07-06 00:33:31 +03:00 committed by GitHub
commit 25f9963645
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -839,7 +839,7 @@ Template.moveCardPopup.events({
this.swimlaneId = swimlaneId;
this.listId = listId;
Popup.back();
Popup.back(2);
},
});
BlazeComponent.extendComponent({
@ -975,7 +975,7 @@ Template.copyCardPopup.events({
// See https://github.com/wekan/wekan/issues/80
Filter.addException(_id);
Popup.back();
Popup.back(2);
}
},
});