Skip to content

Commit

Permalink
fix(VDatePicker): remove forced active when selected
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Sep 14, 2023
1 parent e5df1e0 commit ad54bb5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/vuetify/src/labs/VDatePicker/VDatePickerMonth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,7 @@ export const VDatePickerMonth = genericComponent()({

{ (props.showAdjacentMonths || !item.isAdjacent) && (
<VBtn
active={ item.isSelected }
color={ !item.isToday ? color : undefined }
color={ (!item.isToday || item.isSelected) ? color : undefined }
disabled={ item.isDisabled }
icon
ripple={ false } /* ripple not working correctly since we preventDefault in touchend */
Expand Down

0 comments on commit ad54bb5

Please sign in to comment.