mirror of
https://github.com/langgenius/dify.git
synced 2026-03-24 12:21:03 +08:00
Fix number input in tool configure form of agent node tool item (#24154)
This commit is contained in:
parent
513dd11f33
commit
772e52b723
@ -259,7 +259,7 @@ const ReasoningConfigForm: React.FC<Props> = ({
|
||||
className='h-8 grow'
|
||||
type='number'
|
||||
value={varInput?.value || ''}
|
||||
onChange={handleValueChange(variable, type)}
|
||||
onChange={e => handleValueChange(variable, type)(e.target.value)}
|
||||
placeholder={placeholder?.[language] || placeholder?.en_US}
|
||||
/>
|
||||
)}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user