Skip to content

Commit

Permalink
chore(VOverlay): adjust modelValue type
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed May 1, 2024
1 parent cd8239d commit a9f7ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VOverlay/VOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const makeVOverlayProps = propsFactory({
opacity: [Number, String],
noClickAnimation: Boolean,
modelValue: {
type: [Boolean, null] as PropType<boolean | null>,
type: Boolean as PropType<boolean | null>,
default: null,
},
persistent: Boolean,
Expand Down

0 comments on commit a9f7ab1

Please sign in to comment.