|
@@ -747,11 +747,8 @@ function ProjectDetail(props: any) {
|
|
|
placeholder="请选择所属省份"
|
|
|
disabled={!editable}
|
|
|
optionFilterProp="children"
|
|
|
- // filterOption={(input, option) =>
|
|
|
- // option?.children?.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
- // }
|
|
|
filterOption={(input, option) =>
|
|
|
- (option?.label ?? '').toLowerCase().includes(input.toLowerCase())
|
|
|
+ String(option?.label).toLowerCase().includes(input.toLowerCase())
|
|
|
}
|
|
|
>
|
|
|
{Provinces.map(item => {
|