Skip to content

Commit

Permalink
fix(VDatePickerMonth): key warning
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Apr 10, 2024
1 parent 8494b7f commit ca0f1b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const VDatePickerMonth = genericComponent<VDatePickerMonthSlots>()({
<MaybeTransition name={ transition.value }>
<div
ref={ daysRef }
key={ daysInMonth.value[0].date.toString() }
key={ daysInMonth.value[0].date?.toString() }
class="v-date-picker-month__days"
>
{ !props.hideWeekdays && adapter.getWeekdays().map(weekDay => (
Expand Down

0 comments on commit ca0f1b9

Please sign in to comment.