From b367862fe879a47994bbe57e2b56c19ef45978ac Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 18 Jan 2025 18:02:26 +0200 Subject: [PATCH] fix(client): launch bar move commands not working (fixes #989) --- src/public/app/widgets/note_tree.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/public/app/widgets/note_tree.js b/src/public/app/widgets/note_tree.js index 04bf8a0eb..158a31677 100644 --- a/src/public/app/widgets/note_tree.js +++ b/src/public/app/widgets/note_tree.js @@ -1636,12 +1636,12 @@ export default class NoteTreeWidget extends NoteContextAwareWidget { } } - moveShortcutToVisibleCommand({ node, selectedOrActiveBranchIds }) { - branchService.moveToParentNote(selectedOrActiveBranchIds, "_lbVisibleLaunchers"); + moveLauncherToVisibleCommand({ selectedOrActiveBranchIds }) { + branchService.moveToParentNote(selectedOrActiveBranchIds, "_lbRoot__lbVisibleLaunchers"); } - moveShortcutToAvailableCommand({ node, selectedOrActiveBranchIds }) { - branchService.moveToParentNote(selectedOrActiveBranchIds, "_lbAvailableLaunchers"); + moveLauncherToAvailableCommand({ selectedOrActiveBranchIds }) { + branchService.moveToParentNote(selectedOrActiveBranchIds, "_lbRoot__lbAvailableLaunchers"); } addNoteLauncherCommand({ node }) {