From f90fb284838639845ab1ba14b0acbdfbb5e7d99c Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Thu, 28 Oct 2021 11:39:26 +0200 Subject: [PATCH] Card archive closes now the popup after confirmation --- client/components/cards/cardDetails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 66f66c3eb..06bc1ee2c 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -692,7 +692,7 @@ Template.cardDetailsActionsPopup.events({ this.move(this.boardId, this.swimlaneId, this.listId, maxOrder + 1); }, 'click .js-archive': Popup.afterConfirm('cardArchive', function () { - Popup.back(); + Popup.close(); this.archive(); Utils.goBoardId(this.boardId); }),