diff --git a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx index 158bf2394..9f5b7d5d8 100644 --- a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx +++ b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/index.tsx @@ -20,11 +20,17 @@ export default function ShortcutsPage() { // Column Definitions: Defines the columns to be displayed. const [colDefs, setColDefs] = useState<(ColDef | ColGroupDef)[]>([ - { headerName: "Functionality", field: "name", flex: 1, editable: false }, //This column will be twice as wide as the others + { + headerName: "Functionality", + field: "name", + flex: 1, + editable: false, + }, //This column will be twice as wide as the others { field: "shortcut", flex: 2, editable: false, + resizable: false, }, ]); @@ -32,50 +38,62 @@ export default function ShortcutsPage() { { name: "Advanced Settings Component", shortcut: advancedShortcut, + resizable: false, }, { name: "Minimize Component", shortcut: minizmizeShortcut, + resizable: false, }, { name: "Code Component", shortcut: codeShortcut, + resizable: false, }, { name: "Copy Component", shortcut: copyShortcut, + resizable: false, }, { name: "Duplicate Component", shortcut: duplicateShortcut, + resizable: false, }, { name: "Share Component", shortcut: shareShortcut, + resizable: false, }, { name: "Docs Component", shortcut: docsShortcut, + resizable: false, }, { name: "Save Component", shortcut: saveShortcut, + resizable: false, }, { name: "Delete Component", shortcut: deleteShortcut, + resizable: false, }, { name: "Open Playground", shortcut: interactionShortcut, + resizable: false, }, { name: "Undo", shortcut: undoShortcut, + resizable: false, }, { name: "Redo", shortcut: redoShortcut, + resizable: false, }, ]);