Skip to content

Commit

Permalink
fix: select other months' date (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV authored May 23, 2024
1 parent 89fa504 commit 77d40c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/calendar/CalendarView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ watch(selectedDate, (date) => {
<div class="col-12 md:col-6">
<div>
<!-- Calendar itself -->
<Calendar class="w-full" v-model="selectedDate" inline>
<Calendar class="w-full" v-model="selectedDate" :select-other-months="true" inline>
<template #date="{ date }">
<div class="relative">
<div class="deadline-indicator" v-if="hasDeadline(date)">
Expand Down

0 comments on commit 77d40c7

Please sign in to comment.