mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-14 23:21:19 +00:00
fix(textarea): empty string as fallback (#3463)
This commit is contained in:
parent
7bef4f0fa6
commit
6edb9a16b8
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