From 5a41c88e55f98d76c33408f63a366ac83aa77154 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Tue, 7 Nov 2023 00:06:14 +0530 Subject: [PATCH] fix incorrect reference value display in autocomplete --- components/lib/autocomplete/AutoComplete.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/autocomplete/AutoComplete.vue b/components/lib/autocomplete/AutoComplete.vue index a70474dfe..0c57cb09f 100755 --- a/components/lib/autocomplete/AutoComplete.vue +++ b/components/lib/autocomplete/AutoComplete.vue @@ -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);