From 490ad65b6ed1a08fd564cc78dcc389a7c67b8d10 Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Tue, 8 Feb 2022 22:26:56 +0100 Subject: [PATCH] Move/Copy card closes now the popup if done - Resolves discussion: #4337 --- client/components/cards/cardDetails.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index baf7887be..ee8ac4193 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -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); } }, });