diff --git a/inlong-dashboard/src/ui/components/HighSelect/index.tsx b/inlong-dashboard/src/ui/components/HighSelect/index.tsx index 4b163834b5c..f1aad93a912 100644 --- a/inlong-dashboard/src/ui/components/HighSelect/index.tsx +++ b/inlong-dashboard/src/ui/components/HighSelect/index.tsx @@ -170,9 +170,9 @@ const HighSelect: React.FC = ({ onDropdownVisibleChange={onDropdownVisibleChange} onChange={onSelectChange} filterOption={ - options.filterOption + options?.filterOption === true ? (input, option) => (option?.label ?? '').toString().includes(input) - : options.filterOption + : false } value={ useInput && diyState