From 56cd2078010b3fd1d047b79b820a4e6126ac06ec Mon Sep 17 00:00:00 2001 From: xintaofei Date: Thu, 9 Apr 2026 18:48:27 +0800 Subject: [PATCH] fix(ui): add max-height limit to commit message textarea Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/layout/commit-dialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/commit-dialog.tsx b/src/components/layout/commit-dialog.tsx index 759eff4..b621e9e 100644 --- a/src/components/layout/commit-dialog.tsx +++ b/src/components/layout/commit-dialog.tsx @@ -1196,7 +1196,7 @@ export function CommitWorkspace({ placeholder={t("commitMessagePlaceholder")} defaultValue="" onChange={handleMessageChange} - className="min-h-[90px] resize-y" + className="min-h-[90px] max-h-[200px] resize-y" />