From 0b7ffdf1095aeab876ef09efcaf1f02a4cfde9d9 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 16 Dec 2025 10:20:15 +0200 Subject: [PATCH] chore(breadcrumb): remove keyboard shortcuts --- apps/client/src/widgets/layout/Breadcrumb.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/client/src/widgets/layout/Breadcrumb.tsx b/apps/client/src/widgets/layout/Breadcrumb.tsx index 4ec4f4534..be09a1b78 100644 --- a/apps/client/src/widgets/layout/Breadcrumb.tsx +++ b/apps/client/src/widgets/layout/Breadcrumb.tsx @@ -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 },