Skip to content

Commit

Permalink
Refactor #5681 - For DatePicker
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed May 7, 2024
1 parent 45bb31a commit f046ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/lib/datepicker/DatePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
v-bind="ptm('dropdown')"
>
<slot name="dropdownicon" :class="icon">
<component :is="icon ? 'span' : 'CalendarIcon'" :class="icon" v-bind="ptm('dropdownButtonIcon')" />
<component :is="icon ? 'span' : 'CalendarIcon'" :class="icon" v-bind="ptm('dropdownIcon')" />
</slot>
</button>
</slot>
Expand Down
2 changes: 1 addition & 1 deletion components/lib/datepicker/style/DatePickerStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ const classes = {
dayView: 'p-datepicker-day-view',
weekHeader: 'p-datepicker-weekheader p-disabled',
weekNumber: 'p-datepicker-weeknumber',
weekLabelContainer: 'p-disabled', //TODO:
weekLabelContainer: 'p-disabled',
weekDayCell: 'p-datepicker-weekday-cell',
weekDay: 'p-date-picker-weekday',
dayCell: ({ date }) => ['p-datepicker-day-cell', { 'p-datepicker-other-month': date.otherMonth, 'p-datepicker-today': date.today }],
Expand Down

0 comments on commit f046ecc

Please sign in to comment.