From 8fb6824c1dcb889f155faf3853c081ed452603f2 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:50:30 +0900 Subject: [PATCH] [ci skip] fix --- packages/frontend/src/widgets/WidgetCalendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/widgets/WidgetCalendar.vue b/packages/frontend/src/widgets/WidgetCalendar.vue index 6bf182450e..f2321ca9fa 100644 --- a/packages/frontend/src/widgets/WidgetCalendar.vue +++ b/packages/frontend/src/widgets/WidgetCalendar.vue @@ -119,7 +119,7 @@ watch(fNow, (to) => { // 次回更新までに日付が変わる場合、日付が変わった直後に強制的に更新するタイマーをセットする if (nextDayMidnightTime - to <= TIME_UPDATE_INTERVAL) { if (nextDayTimer != null) { - clearTimeout(nextDayTimer); + window.clearTimeout(nextDayTimer); nextDayTimer = null; }