From 88a636345b717e017c8aff769b8e19366d01fcdb Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Tue, 9 Jun 2026 21:30:13 +0200 Subject: [PATCH] Switch the task-edit body textarea from resize-none to resize-y so users can drag the bottom-right grip to grow it vertically Long task notes are common (meeting summaries, copied emails) and the fixed three-row textarea forced an internal scroll for everything past those rows. Allowing the native bottom-right resize grip lets each user grow the field as much as they need without taking the column neighbours along for the ride. Horizontal resize stays disabled (resize-y not resize) so dragging the corner does not push other cards out of the way -- columns are fixed-width by design. --- frontend/src/components/kanban/TaskEditForm.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/kanban/TaskEditForm.tsx b/frontend/src/components/kanban/TaskEditForm.tsx index c1895af3..35660012 100644 --- a/frontend/src/components/kanban/TaskEditForm.tsx +++ b/frontend/src/components/kanban/TaskEditForm.tsx @@ -95,9 +95,11 @@ export function TaskEditForm({ onKeyDown={handleKeyDown} placeholder={tc("descriptionOptional")} rows={3} - className={[editInputCls, "resize-none"].join( - " ", - )} + // ``resize-y`` enables the native bottom-right + // grip for vertical resizing. Horizontal resize is + // intentionally blocked so dragging the corner + // doesn't push the column's neighbours around. + className={[editInputCls, "resize-y"].join(" ")} />
e.stopPropagation()}