fix(web): Fix issues with workflow as tool configuration button (#23039) (#23050)

This commit is contained in:
HyaCinth 2025-07-28 15:49:19 +08:00 committed by GitHub
commit beebcae0a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
destructive && 'border-components-input-border-destructive bg-components-input-bg-destructive text-components-input-text-filled hover:border-components-input-border-destructive hover:bg-components-input-bg-destructive focus:border-components-input-border-destructive focus:bg-components-input-bg-destructive',
className,
)}
value={value}
value={value ?? ''}
onChange={onChange}
disabled={disabled}
{...props}