This commit is contained in:
dyhj625 2025-03-31 11:11:43 +09:00
parent 68607e3d1f
commit 18f47fff5f

View File

@ -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 () => {