fix: fix can't config Nth item in list Node (#19618)

This commit is contained in:
Good Wood 2025-05-13 19:46:26 +08:00 committed by GitHub
parent be51384549
commit b8e305f183
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,16 +97,14 @@ const Panel: FC<NodePanelProps<ListFilterNodeType>> = ({
{inputs.extract_by?.enabled {inputs.extract_by?.enabled
? ( ? (
<div className='flex items-center justify-between'> <div className='flex items-center justify-between'>
{hasSubVariable && ( <div className='mr-2 grow'>
<div className='mr-2 grow'> <ExtractInput
<ExtractInput value={inputs.extract_by.serial as string}
value={inputs.extract_by.serial as string} onChange={handleExtractsChange}
onChange={handleExtractsChange} readOnly={readOnly}
readOnly={readOnly} nodeId={id}
nodeId={id} />
/> </div>
</div>
)}
</div> </div>
) )
: null} : null}