-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug Report][3.7.3] v-combobox placeholder is not consistent with v-textbox #20660
Comments
May be related to #17122 |
Based on the playground, it appears that the regression was introduced in Vuetify 3.1.14 and was not present in 3.1.13 for the And from 3.0.0-beta.9 to 3.0.0-beta.10 for the |
Also the I see this already mentioned here but it was not related to placeholder={ isDirty ? undefined : props.placeholder } will incorrectly result in Possible Fix (to be tested and verified): const isDirty = model.value.length > 0 && !(model.value[0].value === '' && model.value.length === 1) |
Environment
Vuetify Version: 3.7.3
Vue Version: 3.5.12
Browsers: Google Chrome, Microsoft Edge
OS: Windows, Linux
Steps to reproduce
A placeholder bound to an empty but non null model value
Expected Behavior
The combobx placeholder should show up as the v-text-field placeholder does
Actual Behavior
The placeholder remains hidden instead and strictly requires a null
Reproduction Link
https://play.vuetifyjs.com/#...
The text was updated successfully, but these errors were encountered: