From a4dbefd7ef2cf211813bc36bd2493a75b9bc4bbe Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 25 Dec 2025 22:52:01 +0200 Subject: [PATCH] fix(launch_bar): note launcher no longer hoisting in same tab (closes #8160) --- apps/client/src/widgets/launch_bar/GenericButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/launch_bar/GenericButtons.tsx b/apps/client/src/widgets/launch_bar/GenericButtons.tsx index 69982040f..70fe0fcce 100644 --- a/apps/client/src/widgets/launch_bar/GenericButtons.tsx +++ b/apps/client/src/widgets/launch_bar/GenericButtons.tsx @@ -30,7 +30,7 @@ export function CustomNoteLauncher({ launcherNote, getTargetNoteId, getHoistedNo const activate = !!evt.shiftKey; await appContext.tabManager.openInNewTab(targetNoteId, hoistedNoteIdWithDefault, activate); } else { - await appContext.tabManager.openInSameTab(targetNoteId); + await appContext.tabManager.openInSameTab(targetNoteId, hoistedNoteIdWithDefault); } }, [ launcherNote, getTargetNoteId, getHoistedNoteId ]);