Skip to content

Commit da4f99a

Browse files
committed
fix(VCalendar): avoid selecting day button
fixes #22141
1 parent ed74c54 commit da4f99a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/vuetify/src/labs/VCalendar/VCalendarDaily.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import vResize from '@/directives/resize'
1010

1111
// Utilities
1212
import { nextTick, onMounted, ref } from 'vue'
13-
import { convertToUnit, defineComponent, getPrefixedEventHandlers, useRender } from '@/util'
13+
import { convertToUnit, defineComponent, getPrefixedEventHandlers, noop, useRender } from '@/util'
1414

1515
// Types
1616
import type { CalendarTimestamp } from './types'
@@ -140,6 +140,7 @@ export const VCalendarDaily = defineComponent({
140140
activeColor={ props.color }
141141
variant={ props.color ? 'flat' : 'tonal' }
142142
baseVariant="text"
143+
onUpdate:active={ noop }
143144
{ ...events }
144145
>
145146
{ base.dayFormatter.value(day, false) }

0 commit comments

Comments
 (0)