Merge pull request #3892 from sean-dickinson/patch-1

Fix: Support non-empty values
pull/3919/head
Tuğçe Küçükoğlu 2023-05-02 12:43:12 +03:00 committed by GitHub
commit 7ac501359f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -950,7 +950,7 @@ export default {
'p-disabled': this.disabled, 'p-disabled': this.disabled,
'p-dropdown-clearable': this.showClear && !this.disabled, 'p-dropdown-clearable': this.showClear && !this.disabled,
'p-focus': this.focused, 'p-focus': this.focused,
'p-inputwrapper-filled': this.modelValue, 'p-inputwrapper-filled': this.hasSelectedOption,
'p-inputwrapper-focus': this.focused || this.overlayVisible, 'p-inputwrapper-focus': this.focused || this.overlayVisible,
'p-overlay-open': this.overlayVisible 'p-overlay-open': this.overlayVisible
} }