Skip to content

Commit

Permalink
fix(VFileInput): use correct model for validation
Browse files Browse the repository at this point in the history
fixes #20247
  • Loading branch information
johnleider committed Feb 17, 2025
1 parent 407bd8e commit 5ae1208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VFileInput/VFileInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const VFileInput = genericComponent<VFileInputSlots>()({
return (
<VInput
ref={ vInputRef }
v-model={ model.value }
modelValue={ props.multiple ? model.value : model.value[0] }
class={[
'v-file-input',
{
Expand Down

0 comments on commit 5ae1208

Please sign in to comment.