Skip to content
Merged
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
Added “Q” shortcut key
  • Loading branch information
matt-aitken committed Apr 10, 2025
commit a47600d3665949e97975153d456d3a5a3a1362d0
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ function TasksTreeView({
label="Queue time"
checked={showQueueTime}
onCheckedChange={(e) => setShowQueueTime(e.valueOf())}
shortcut={{ key: "Q" }}
/>
<Switch
variant="small"
Expand Down Expand Up @@ -1357,6 +1358,7 @@ function KeyboardShortcuts({
title="Collapse all"
/>
<NumberShortcuts toggleLevel={(number) => toggleExpandLevel(number)} />
<ShortcutWithAction shortcut={{ key: "Q" }} title="Queue time" action={() => {}} />
</>
);
}
Expand Down