feat(react/widgets): port left pane toggle

This commit is contained in:
Elian Doran
2025-08-30 10:29:03 +03:00
parent 57983b54d2
commit 86365ebd44
4 changed files with 33 additions and 46 deletions

View File

@@ -25,7 +25,7 @@ export default function ActionButton({ text, icon, className, onClick, triggerCo
useEffect(() => {
if (triggerCommand) {
keyboard_actions.getAction(triggerCommand).then(action => setKeyboardShortcut(action?.effectiveShortcuts));
keyboard_actions.getAction(triggerCommand, true).then(action => setKeyboardShortcut(action?.effectiveShortcuts));
}
}, [triggerCommand]);