fix: select trigger disabled option (#3867)
parent
8fc617a4d7
commit
61fa2cfdf6
|
@ -156,7 +156,7 @@ export function findFirstMenuItem(children) {
|
|||
if (found) {
|
||||
return found;
|
||||
}
|
||||
} else if (!props.disabled) {
|
||||
} else if (!(props.disabled || props.disabled === '')) {
|
||||
return child;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue