Merge pull request #16 from navedqb/4749--fix-incorrect-reference-value-display
fix: fix incorrect reference value display in autocompletepull/4762/head
commit
08130a2391
|
@ -884,7 +884,7 @@ export default {
|
|||
return this.optionGroupLabel ? this.flatOptions(this.suggestions) : this.suggestions || [];
|
||||
},
|
||||
inputValue() {
|
||||
if (this.modelValue) {
|
||||
if (ObjectUtils.isNotEmpty(this.modelValue)) {
|
||||
if (typeof this.modelValue === 'object') {
|
||||
const label = this.getOptionLabel(this.modelValue);
|
||||
|
||||
|
|
Loading…
Reference in New Issue