Skip to content

Commit 7191b0a

Browse files
authored
Merge pull request RooCodeInc#1385 from dcbartlett/feature/textarea_resizing
Add resizing to VSCode TextArea
2 parents c12343f + 5c58a9b commit 7191b0a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

webview-ui/src/components/settings/SettingsView.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
9999
<VSCodeTextArea
100100
value={customInstructions ?? ""}
101101
style={{ width: "100%" }}
102+
resize="vertical"
102103
rows={4}
103104
placeholder={'e.g. "Run unit tests at the end", "Use TypeScript with async/await", "Speak in Spanish"'}
104105
onInput={(e: any) => setCustomInstructions(e.target?.value ?? "")}>

0 commit comments

Comments
 (0)