From 093384fcb71831283c772eed6de8addf93f8c944 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 30 Apr 2024 18:37:12 -0300 Subject: [PATCH] Update component names and shortcuts in ShortcutsPage --- .../pages/ShortcutsPage/index.tsx | 46 +++++-------------- 1 file changed, 12 insertions(+), 34 deletions(-) diff --git a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx index adcfcefef..6f911068b 100644 --- a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx +++ b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx @@ -36,44 +36,41 @@ export default function ShortcutsPage() { const [nodesRowData, setNodesRowData] = useState([ { - name: "Advanced Settings", + name: "Component Advanced Settings", shortcut: advancedShortcut, }, { - name: "Minimize", + name: "Component Minimize", shortcut: minizmizeShortcut, }, { - name: "Code", + name: "Component Code", shortcut: codeShortcut, }, { - name: "Copy", + name: "Component Copy", shortcut: copyShortcut, }, { - name: "Duplicate", + name: "Component Duplicate", shortcut: duplicateShortcut, }, { - name: "Share", + name: "Component Share", shortcut: shareShortcut, }, { - name: "Docs", + name: "Component Docs", shortcut: docsShortcut, }, { - name: "Save", + name: "Component Save", shortcut: saveShortcut, }, { - name: "Delete", + name: "Component Delete", shortcut: deleteShortcut, }, - ]); - - const [flowRowData, setFlowRowData] = useState([ { name: "Open Playground", shortcut: interactionShortcut, @@ -87,6 +84,7 @@ export default function ShortcutsPage() { shortcut: redoShortcut, }, ]); + return (
@@ -99,19 +97,13 @@ export default function ShortcutsPage() { />

- Customize, manage and create shortcuts for quick access to + Manage Shortcuts for quick access to frequently used actions.

- - - Nodes - - Shortcuts relating to the nodes in the workspace. - - + - - - Flow - Shortcuts relating to the flow. - - - - -
);