mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
add fix
This commit is contained in:
@@ -37,6 +37,7 @@ export const Input = ({ inputParam, value, onChange, disabled = false, showDialo
|
|||||||
onChange(e.target.value)
|
onChange(e.target.value)
|
||||||
}}
|
}}
|
||||||
inputProps={{
|
inputProps={{
|
||||||
|
step: 0.1,
|
||||||
style: {
|
style: {
|
||||||
height: inputParam.rows ? '90px' : 'inherit'
|
height: inputParam.rows ? '90px' : 'inherit'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -205,6 +205,7 @@ const NodeInputHandler = ({ inputAnchor, inputParam, data, disabled = false, isA
|
|||||||
)}
|
)}
|
||||||
{(inputParam.type === 'string' || inputParam.type === 'password' || inputParam.type === 'number') && (
|
{(inputParam.type === 'string' || inputParam.type === 'password' || inputParam.type === 'number') && (
|
||||||
<Input
|
<Input
|
||||||
|
key={data.inputs[inputParam.name]}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
inputParam={inputParam}
|
inputParam={inputParam}
|
||||||
onChange={(newValue) => (data.inputs[inputParam.name] = newValue)}
|
onChange={(newValue) => (data.inputs[inputParam.name] = newValue)}
|
||||||
|
|||||||
Reference in New Issue
Block a user