mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Add resizing to VSCode TextArea
This commit is contained in:
parent
cc42f2f81c
commit
5c58a9be75
1 changed files with 1 additions and 0 deletions
|
|
@ -98,6 +98,7 @@ const SettingsView = ({ onDone }: SettingsViewProps) => {
|
|||
<VSCodeTextArea
|
||||
value={customInstructions ?? ""}
|
||||
style={{ width: "100%" }}
|
||||
resize="vertical"
|
||||
rows={4}
|
||||
placeholder={'e.g. "Run unit tests at the end", "Use TypeScript with async/await", "Speak in Spanish"'}
|
||||
onInput={(e: any) => setCustomInstructions(e.target?.value ?? "")}>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue