chore(breadcrumb): remove keyboard shortcuts

This commit is contained in:
Elian Doran 2025-12-16 10:20:15 +02:00
parent e91cb1a198
commit 0b7ffdf109
No known key found for this signature in database

View File

@ -184,7 +184,6 @@ function BreadcrumbItem({ index, notePath, noteContext, notePathLength }: { inde
{
title: `${t("tree-context-menu.hoist-note")}`,
command: "toggleNoteHoisting",
keyboardShortcut: "toggleNoteHoisting",
uiIcon: "bx bxs-chevrons-up",
enabled: notSearch
},
@ -192,14 +191,12 @@ function BreadcrumbItem({ index, notePath, noteContext, notePathLength }: { inde
{
title: t("tree-context-menu.move-to"),
command: "moveNotesTo",
keyboardShortcut: "moveNotesTo",
uiIcon: "bx bx-transfer",
enabled: isNotRoot && !isHoisted && parentNotSearch
},
{
title: t("tree-context-menu.clone-to"),
command: "cloneNotesTo",
keyboardShortcut: "cloneNotesTo",
uiIcon: "bx bx-duplicate",
enabled: isNotRoot && !isHoisted
},