Fixed #450 - When autocomplete is bound to an object, float label overlaps in some circumstances

pull/457/head
cagataycivici 2020-08-27 13:40:38 +03:00
parent 9653b312a8
commit 08207930a5
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ export default {
return ['p-autocomplete p-component', {
'p-autocomplete-dd': this.dropdown,
'p-autocomplete-multiple': this.multiple,
'p-inputwrapper-filled': ((this.value && this.value.length) || (this.inputTextValue && this.inputTextValue.length)),
'p-inputwrapper-filled': ((this.value) || (this.inputTextValue && this.inputTextValue.length)),
'p-inputwrapper-focus': this.focused
}];
},