Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(sidebar): change new workflow shortcut from Mod+Shift+W to Mod+Sh…
…ift+P to avoid browser close-window conflict
  • Loading branch information
waleedlatif1 committed Mar 28, 2026
commit 4f705d7da80ea3ae37c123d5e899e0c79e8a19c5
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const COMMAND_DEFINITIONS: Record<CommandId, CommandDefinition> = {
},
'add-workflow': {
id: 'add-workflow',
shortcut: 'Mod+Shift+W',
shortcut: 'Mod+Shift+P',
allowInEditable: false,
},
Comment thread
waleedlatif1 marked this conversation as resolved.
Comment thread
waleedlatif1 marked this conversation as resolved.
'add-task': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@ export const Sidebar = memo(function Sidebar() {
{isCreatingWorkflow ? (
<p>Creating workflow...</p>
) : (
<Tooltip.Shortcut keys={isMac ? '⌘⇧W' : 'Ctrl+Shift+W'}>
<Tooltip.Shortcut keys={isMac ? '⌘⇧P' : 'Ctrl+Shift+P'}>
New workflow
</Tooltip.Shortcut>
)}
Expand Down
Loading