fix(select): fix select for no-match-value 's bug (#1926)

This commit is contained in:
申君健 2024-08-16 15:27:44 +08:00 committed by GitHub
parent b5b6cb4789
commit 20eac4b9c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ const getOptionOfSetSelected = ({ api, props }) => {
}
// tiny 新增
if (!option.currentLabel) {
if (!option.state.currentLabel) {
api.clearNoMatchValue('')
}