mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix(textarea): empty string as fallback (#3463)
This commit is contained in:
parent
de9094192e
commit
028d81ea04
1 changed files with 1 additions and 1 deletions
|
|
@ -1002,7 +1002,7 @@ const PromptsView = ({ onDone }: PromptsViewProps) => {
|
|||
})}
|
||||
</div>
|
||||
<VSCodeTextArea
|
||||
value={customInstructions}
|
||||
value={customInstructions || ""}
|
||||
onChange={(e) => {
|
||||
const value =
|
||||
(e as unknown as CustomEvent)?.detail?.target?.value ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue