Skip to content

Commit

Permalink
fix(VTimePicker): missing update:period event when ampm clicked in title
Browse files Browse the repository at this point in the history
fixes #7027
  • Loading branch information
jacekkarczmarczyk committed Jan 31, 2020
1 parent 60844a3 commit 3a510e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VTimePicker/VTimePicker.ts
Expand Up @@ -350,7 +350,7 @@ export default mixins(
},
on: {
'update:selecting': (value: 1 | 2 | 3) => (this.selecting = value),
'update:period': this.setPeriod,
'update:period': (period: string) => this.$emit('update:period', period),
},
ref: 'title',
slot: 'title',
Expand Down

0 comments on commit 3a510e8

Please sign in to comment.