diff --git a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx index fb571449d5..c9bd6f6852 100644 --- a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx +++ b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/config.tsx @@ -166,6 +166,7 @@ export const getFormContent = ( csvData, fileName, setInlongStreamID, + inlongStreamId, ) => [ { type: 'select', @@ -219,7 +220,7 @@ export const getFormContent = ( pageNum: 1, pageSize: 100, inlongGroupId, - inlongStreamId: values.inlongStreamId, + inlongStreamId: inlongStreamId, }, }), requestParams: { @@ -230,6 +231,9 @@ export const getFormContent = ( })) || [], }, }, + filterOption: (keyword: string, option: { label: any }) => { + return (option?.label ?? '').toLowerCase().includes(keyword.toLowerCase()); + }, }), }, { diff --git a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx index c7eebf1895..913d583eb4 100644 --- a/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx +++ b/inlong-dashboard/src/ui/pages/GroupDetail/Audit/index.tsx @@ -162,6 +162,7 @@ const Comp: React.FC = ({ inlongGroupId }) => { csvData, fileName, setInlongStreamID, + inlongStreamID, )} style={{ marginBottom: 30, gap: 10 }} onFilter={allValues =>