Skip to content

Commit

Permalink
fix(VTimePicker): emit minute/second on change (#19575)
Browse files Browse the repository at this point in the history
  • Loading branch information
blalan05 authored Apr 9, 2024
1 parent 2b3ccee commit d85d795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vuetify/src/labs/VTimePicker/VTimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ export const VTimePicker = genericComponent<VTimePickerSlots>()({
case 'hour':
emit('update:hour', value)
break
case 'minutes':
case 'minute':
emit('update:minute', value)
break
case 'seconds':
case 'second':
emit('update:second', value)
break
default:
Expand Down

0 comments on commit d85d795

Please sign in to comment.