mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
fix(select-component): remove filter sort
This commit is contained in:
parent
d25276a23b
commit
6f4f601ba8
@ -65,6 +65,8 @@ const ObjectSelect = (props: Props) => {
|
||||
);
|
||||
};
|
||||
|
||||
const filterOption = (input, option) => (option?.label ?? '').toLowerCase().includes((input || '').toLowerCase());
|
||||
|
||||
export const Select = connect(
|
||||
(props: Props) => {
|
||||
const { objectValue, ...others } = props;
|
||||
@ -74,10 +76,7 @@ export const Select = connect(
|
||||
return (
|
||||
<AntdSelect
|
||||
showSearch
|
||||
filterOption={(input, option) => (option?.label ?? '').includes(input)}
|
||||
filterSort={(optionA, optionB) =>
|
||||
(optionA?.label ?? '').toLowerCase().localeCompare((optionB?.label ?? '').toLowerCase())
|
||||
}
|
||||
filterOption={filterOption}
|
||||
allowClear
|
||||
{...others}
|
||||
onChange={(changed) => {
|
||||
|
Loading…
Reference in New Issue
Block a user