Compare commits

...

1 Commits

Author SHA1 Message Date
Claude e709668d75 Widen task filter dropdown popup by 50%
Increased the max-width of the TasksDropdown SelectPopover from 240px
to 360px to provide more space for viewing task names, especially those
with colon-namespaced naming conventions.
2026-01-26 14:53:27 +00:00
@@ -634,7 +634,7 @@ function TasksDropdown({
<SelectProvider value={values("tasks")} setValue={handleChange} virtualFocus={true}>
{trigger}
<SelectPopover
className="min-w-0 max-w-[min(240px,var(--popover-available-width))]"
className="min-w-0 max-w-[min(360px,var(--popover-available-width))]"
hideOnEscape={() => {
if (onClose) {
onClose();