mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Fix: Support non-empty values
Dropdown does not show correct styling if using a falsey value such as `false` or `0`.
This commit is contained in:
parent
f76131aa26
commit
3cad13efa4
1 changed files with 1 additions and 1 deletions
|
@ -950,7 +950,7 @@ export default {
|
|||
'p-disabled': this.disabled,
|
||||
'p-dropdown-clearable': this.showClear && !this.disabled,
|
||||
'p-focus': this.focused,
|
||||
'p-inputwrapper-filled': this.modelValue,
|
||||
'p-inputwrapper-filled': this.hasSelectedOption,
|
||||
'p-inputwrapper-focus': this.focused || this.overlayVisible,
|
||||
'p-overlay-open': this.overlayVisible
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue