|
@@ -22,7 +22,7 @@ function DDProjectField(props) {
|
|
|
onChange(String(value));
|
|
|
}}
|
|
|
filterOption={(input, option) =>
|
|
|
- option.children.join('').toLowerCase().includes(input.toLowerCase())
|
|
|
+ (option?.label ?? '').toLowerCase().includes(input.toLowerCase())
|
|
|
}
|
|
|
options={projectList.map((item) => {
|
|
|
return {
|