We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb9d14 commit 3c9b2e3Copy full SHA for 3c9b2e3
packages/vuetify/src/components/VCombobox/VCombobox.tsx
@@ -477,7 +477,8 @@ export const VCombobox = genericComponent<new <
477
slots['append-item'] ||
478
slots['no-data']
479
)
480
- const isDirty = model.value.length > 0
+ const isEmptyString = model.value.length === 1 && model.value[0].value === ''
481
+ const isDirty = model.value.length > 0 && !isEmptyString
482
const textFieldProps = VTextField.filterProps(props)
483
484
return (
0 commit comments