Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #1010 - autocomplete input no response
Browse files Browse the repository at this point in the history
tugcekucukoglu committed Feb 25, 2021
1 parent f28c05b commit d674064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/autocomplete/AutoComplete.vue
Original file line number Diff line number Diff line change
@@ -462,8 +462,8 @@ export default {
}];
},
inputValue() {
if (this.value && typeof this.value === 'object') {
if (this.field) {
if (this.value) {
if (this.field && typeof this.value === 'object') {
const resolvedFieldData = ObjectUtils.resolveFieldData(this.value, this.field);
return resolvedFieldData != null ? resolvedFieldData : this.value;
}

0 comments on commit d674064

Please sign in to comment.