Skip to content

Commit

Permalink
Fixed #1205 - AutoComplete forceSelection with Multiple overwrites se…
Browse files Browse the repository at this point in the history
…lection
  • Loading branch information
tugcekucukoglu committed Apr 30, 2021
1 parent 888eb54 commit e230370
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/autocomplete/AutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,9 @@ export default {
this.$refs.input.value = '';
this.inputTextValue = '';
this.$emit('clear');
this.$emit('update:modelValue', null);
if(!this.multiple) {
this.$emit('update:modelValue', null);
}
}
}
},
Expand Down

0 comments on commit e230370

Please sign in to comment.