From 18f47fff5f75ca8d378d150fdf19871928497a6c Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Mon, 31 Mar 2025 11:11:43 +0900 Subject: [PATCH] . --- src/components/modal/VacationGrantModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modal/VacationGrantModal.vue b/src/components/modal/VacationGrantModal.vue index ed6f00f..400d33c 100644 --- a/src/components/modal/VacationGrantModal.vue +++ b/src/components/modal/VacationGrantModal.vue @@ -46,7 +46,7 @@ const myRemainingQuota = computed(() => { return props.remainingVacationData?.[myUserId.value] ?? 0; }); const isGiftButtonDisabled = computed(() => { - return myRemainingQuota.value <= 0; + return myRemainingQuota.value < 0; }); // 사원 별 남은 보내기 개수 const fetchSentVacationCount = async () => {