Made ctrl shortcut go straight to typing.

This commit is contained in:
2026-01-30 14:00:53 -06:00
parent e4f52e4b9f
commit 266f6eeb4e
6 changed files with 24 additions and 14 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ export const TaskDetail: Component<TaskDetailProps> = (props) => {
<div class="flex flex-row items-center gap-1.5 sm:gap-4 mt-2 text-sm overflow-x-auto no-scrollbar flex-nowrap">
{/* Priority */}
<div class="flex items-center gap-1 group shrink-0">
<span class="text-[10px] uppercase font-bold tracking-wider text-muted-foreground/70 hidden sm:inline">Impact</span>
<span class="text-[10px] uppercase font-bold tracking-wider text-muted-foreground/70 hidden sm:inline">Priority</span>
<Select
value={props.task.priority.toString()}
onChange={(val) => val && updatePriority(val)}