Skip to content

Commit 107d16e

Browse files
committed
fix: Optimize the display of Human-relay Dialog
1 parent 51f63a0 commit 107d16e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webview-ui/src/components/human-relay/HumanRelayDialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export const HumanRelayDialog: React.FC<HumanRelayDialogProps> = ({
129129
<div className="grid gap-6 py-6">
130130
<div className="relative">
131131
<Textarea
132-
className="min-h-[200px] font-mono text-sm p-4 pr-12 whitespace-pre-wrap"
132+
className="min-h-[100px] font-mono text-sm p-4 pr-12 whitespace-pre-wrap"
133133
value={promptText}
134134
readOnly
135135
/>
@@ -180,7 +180,7 @@ export const HumanRelayDialog: React.FC<HumanRelayDialogProps> = ({
180180
placeholder={t("humanRelay:aiResponse.placeholder")}
181181
value={response}
182182
onChange={(e) => setResponse(e.target.value)}
183-
className="min-h-[150px]"
183+
className="min-h-[100px]"
184184
/>
185185
</div>
186186
</div>

0 commit comments

Comments
 (0)