Merge pull request #4762 from qburst/4749--fix-incorrect-reference-value-display

fix: #4749 || fix incorrect reference value display
pull/4829/head
Tuğçe Küçükoğlu 2023-11-15 20:30:43 +03:00 committed by GitHub
commit 1ae9ef3ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -884,7 +884,7 @@ export default {
return this.optionGroupLabel ? this.flatOptions(this.suggestions) : this.suggestions || []; return this.optionGroupLabel ? this.flatOptions(this.suggestions) : this.suggestions || [];
}, },
inputValue() { inputValue() {
if (this.modelValue) { if (ObjectUtils.isNotEmpty(this.modelValue)) {
if (typeof this.modelValue === 'object') { if (typeof this.modelValue === 'object') {
const label = this.getOptionLabel(this.modelValue); const label = this.getOptionLabel(this.modelValue);