diff --git a/src/views/vacation/VacationManagement.vue b/src/views/vacation/VacationManagement.vue index f6e35a2..a8021e5 100644 --- a/src/views/vacation/VacationManagement.vue +++ b/src/views/vacation/VacationManagement.vue @@ -137,6 +137,7 @@ const calendarOptions = reactive({ center: "title", right: "prev,next", }, + contentHeight:"auto", locale: "ko", selectable: false, dateClick: handleDateClick, @@ -383,7 +384,6 @@ async function fetchVacationHistory(year) { try { const response = await axios.get(`vacation/history?year=${year}`); if (response.status === 200 && response.data) { - console.log(response.data.data) myVacations.value = response.data.data.usedVacations || []; receivedVacations.value = response.data.data.receivedVacations || [] }