Browse Source

Fix: number input can display 0 (#23084)

tags/1.7.2
KVOJJJin 3 months ago
parent
commit
84aa38586f
No account linked to committer's email address

+ 1
- 1
web/app/components/workflow/nodes/_base/components/form-input-item.tsx View File

@@ -198,7 +198,7 @@ const FormInputItem: FC<Props> = ({
<Input
className='h-8 grow'
type='number'
value={varInput?.value || ''}
value={Number.isNaN(varInput?.value) ? '' : varInput?.value}
onChange={e => handleValueChange(e.target.value)}
placeholder={placeholder?.[language] || placeholder?.en_US}
/>

+ 3
- 3
web/app/components/workflow/nodes/tool/node.tsx View File

@@ -22,13 +22,13 @@ const Node: FC<NodeProps<ToolNodeType>> = ({
{key}
</div>
{typeof tool_configurations[key].value === 'string' && (
<div title={tool_configurations[key]} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
<div title={tool_configurations[key].value} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
{paramSchemas?.find(i => i.name === key)?.type === FormTypeEnum.secretInput ? '********' : tool_configurations[key].value}
</div>
)}
{typeof tool_configurations[key].value === 'number' && (
<div title={tool_configurations[key].toString()} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
{tool_configurations[key].value}
<div title={Number.isNaN(tool_configurations[key].value) ? '' : tool_configurations[key].value} className='w-0 shrink-0 grow truncate text-right text-xs font-normal text-text-secondary'>
{Number.isNaN(tool_configurations[key].value) ? '' : tool_configurations[key].value}
</div>
)}
{typeof tool_configurations[key] !== 'string' && tool_configurations[key]?.type === FormTypeEnum.modelSelector && (

Loading…
Cancel
Save