mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-19 19:59:10 +08:00
fix textarea onchange
This commit is contained in:
parent
257c515178
commit
9362ae045c
@ -119,7 +119,7 @@ const FormItem: FC<Props> = ({
|
|||||||
type === InputVarType.paragraph && (
|
type === InputVarType.paragraph && (
|
||||||
<Textarea
|
<Textarea
|
||||||
value={value || ''}
|
value={value || ''}
|
||||||
onChange={onChange}
|
onChange={e => onChange(e.target.value)}
|
||||||
placeholder={t('appDebug.variableConig.inputPlaceholder')!}
|
placeholder={t('appDebug.variableConig.inputPlaceholder')!}
|
||||||
autoFocus={autoFocus}
|
autoFocus={autoFocus}
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user