fix(client): launch bar move commands not working (fixes #989)

This commit is contained in:
Elian Doran 2025-01-18 18:02:26 +02:00
parent 3090233078
commit b367862fe8
No known key found for this signature in database

View File

@ -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 }) {