Skip to content

Commit b5ed84d

Browse files
authored
fix(VDateInput): do not pass rounded to the picker (#20972)
1 parent 9d30fa5 commit b5ed84d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vuetify/src/labs/VDateInput/VDateInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const makeVDateInputProps = propsFactory({
4646
...omit(makeVDatePickerProps({
4747
weeksInMonth: 'dynamic' as const,
4848
hideHeader: true,
49-
}), ['active', 'location']),
49+
}), ['active', 'location', 'rounded']),
5050
}, 'VDateInput')
5151

5252
export const VDateInput = genericComponent<VDateInputSlots>()({
@@ -129,7 +129,7 @@ export const VDateInput = genericComponent<VDateInputSlots>()({
129129

130130
useRender(() => {
131131
const confirmEditProps = VConfirmEdit.filterProps(props)
132-
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'location']))
132+
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'location', 'rounded']))
133133
const textFieldProps = VTextField.filterProps(props)
134134

135135
return (

0 commit comments

Comments
 (0)