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