From 21ee44e29c42968634e97909d5d36aad35b90931 Mon Sep 17 00:00:00 2001 From: plind-dm <59729252+plind-dm@users.noreply.github.com> Date: Fri, 3 Apr 2026 23:19:50 +0900 Subject: [PATCH] fix(ui): make goal description area scrollable in create dialog Long goal descriptions pushed the Create button below the viewport with no way to scroll, making it impossible to submit the form. Add overflow-y-auto and max-h-[50vh] to the description container so it scrolls within the dialog while keeping the footer visible. Closes #2631 --- ui/src/components/NewGoalDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/NewGoalDialog.tsx b/ui/src/components/NewGoalDialog.tsx index 0bb9ffcb..1ebb4739 100644 --- a/ui/src/components/NewGoalDialog.tsx +++ b/ui/src/components/NewGoalDialog.tsx @@ -168,7 +168,7 @@ export function NewGoalDialog() { {/* Description */} -
+