From 4b61f38cba9d8ad41a13b8584229ba8b82bb94ac Mon Sep 17 00:00:00 2001 From: Fabian Kromer Date: Tue, 10 Oct 2023 14:48:15 +0200 Subject: [PATCH] Fixes issue #5131 (at least partly) You still have to click on "Template" twice to trigger the popup but IMHO it's better than the feature being completely broken. --- client/components/lists/listBody.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js index 502c9f48b..f68599c83 100644 --- a/client/components/lists/listBody.js +++ b/client/components/lists/listBody.js @@ -646,6 +646,7 @@ BlazeComponent.extendComponent({ if (this.isTemplateSearch) { const boardId = (ReactiveCache.getCurrentUser().profile || {}).templatesBoardId; if (boardId) { + subManager.subscribe('board', boardId, false); this.board = ReactiveCache.getBoard(boardId); } } else {