+
)
}
diff --git a/web/app/components/workflow/nodes/list-filter/components/filter-condition.tsx b/web/app/components/workflow/nodes/list-filter/components/filter-condition.tsx
index 5fa89c566b..876a100f9f 100644
--- a/web/app/components/workflow/nodes/list-filter/components/filter-condition.tsx
+++ b/web/app/components/workflow/nodes/list-filter/components/filter-condition.tsx
@@ -1,10 +1,24 @@
'use client'
import type { FC } from 'react'
import React from 'react'
+import SubVariablePicker from './sub-variable-picker'
+import { SimpleSelect as Select } from '@/app/components/base/select'
+import Input from '@/app/components/base/input'
const FilterCondition: FC = () => {
return (
)
}
diff --git a/web/app/components/workflow/nodes/list-filter/components/sub-variable-picker.tsx b/web/app/components/workflow/nodes/list-filter/components/sub-variable-picker.tsx
index bb973bf799..3ce4bb6996 100644
--- a/web/app/components/workflow/nodes/list-filter/components/sub-variable-picker.tsx
+++ b/web/app/components/workflow/nodes/list-filter/components/sub-variable-picker.tsx
@@ -24,7 +24,6 @@ const SubVariablePicker: FC = () => {
{ value: '2', name: 'age', type: 'number' },
]}
defaultValue={'1'}
- allowSearch
onSelect={() => { }}
placeholder='Select sub variable key'
optionClassName='pl-4 pr-5 py-0'
diff --git a/web/app/components/workflow/nodes/list-filter/panel.tsx b/web/app/components/workflow/nodes/list-filter/panel.tsx
index 0053353281..71e8784450 100644
--- a/web/app/components/workflow/nodes/list-filter/panel.tsx
+++ b/web/app/components/workflow/nodes/list-filter/panel.tsx
@@ -4,10 +4,12 @@ import { useTranslation } from 'react-i18next'
import VarReferencePicker from '../_base/components/variable/var-reference-picker'
import OutputVars, { VarItem } from '../_base/components/output-vars'
import OptionCard from '../_base/components/option-card'
+import Split from '../_base/components/split'
import useConfig from './use-config'
import SubVariablePicker from './components/sub-variable-picker'
import { type ListFilterNodeType, OrderBy } from './types'
import LimitConfig from './components/limit-config'
+import FilterCondition from './components/filter-condition'
import Field from '@/app/components/workflow/nodes/_base/components/field'
import { type NodePanelProps } from '@/app/components/workflow/types'
import Switch from '@/app/components/base/switch'
@@ -46,6 +48,13 @@ const Panel: FC
> = ({
/>
+
+
+
+