diff --git a/resources/js/Shared/Widgets/Calendar/DayComponent.vue b/resources/js/Shared/Widgets/Calendar/DayComponent.vue index 8cc6fc7..ec1c8c1 100644 --- a/resources/js/Shared/Widgets/Calendar/DayComponent.vue +++ b/resources/js/Shared/Widgets/Calendar/DayComponent.vue @@ -13,7 +13,8 @@ } ], day.isHoliday && 'font-bold cursor-default', - (day.isPendingVacation) && `border-b-4 border-dashed ${day.getVacationType.border} md:border-blumilk-600` + (day.isPendingVacation) && `border-b-4 border-dashed ${day.getVacationType.border}`, + (day.isVacation) && `border-b-4 ${day.getVacationType.border}` ]" > @@ -103,9 +104,6 @@ defineProps({ type: Object, required: true, }, - getHolidayDescription: { - type: Function, - }, }) const isActive = ref(false) diff --git a/resources/js/Shared/Widgets/VacationCalendar.vue b/resources/js/Shared/Widgets/VacationCalendar.vue index 2deba40..4c797b1 100644 --- a/resources/js/Shared/Widgets/VacationCalendar.vue +++ b/resources/js/Shared/Widgets/VacationCalendar.vue @@ -7,11 +7,10 @@