pull/8420/merge
Spaceman 2025-11-18 08:53:31 +08:00 committed by GitHub
commit 27008fc0ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ export default defineComponent({
// ========================= Wrap Value ========================= // ========================= Wrap Value =========================
const convert2LabelValues = (draftValues: DraftValueType) => { const convert2LabelValues = (draftValues: DraftValueType) => {
// Convert to array // Convert to array
const valueList = toArray(draftValues); const valueList = draftValues !== '' ? toArray(draftValues) : [];
// Convert to labelInValue type // Convert to labelInValue type
return valueList.map(val => { return valueList.map(val => {