We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05ef925 commit 0767d5eCopy full SHA for 0767d5e
packages/vuetify/src/components/VDatePicker/VDatePickerMonth.tsx
@@ -130,10 +130,10 @@ export const VDatePickerMonth = genericComponent<VDatePickerMonthSlots>()({
130
}
131
132
function onMultipleClick (value: unknown) {
133
- const index = model.value.findIndex(selection => adapter.isSameDay(selection, value))
+ const index = model.value.findIndex(selection => adapter.isSameDay(adapter.date(selection), value))
134
135
if (index === -1) {
136
- model.value = [...model.value, value]
+ model.value = [...model.value, adapter.toJsDate(value)]
137
} else {
138
const value = [...model.value]
139
value.splice(index, 1)
0 commit comments