From 828532bcc4fcd24f826b7d98dd441663dc6b5f51 Mon Sep 17 00:00:00 2001 From: Shinuwa Date: Mon, 3 Aug 2026 16:06:00 +0200 Subject: [PATCH] Show interval anchor time in timer metadata --- website/src/features/toolboxes/modules/TimerModule.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/features/toolboxes/modules/TimerModule.jsx b/website/src/features/toolboxes/modules/TimerModule.jsx index dd55fbd..08db967 100644 --- a/website/src/features/toolboxes/modules/TimerModule.jsx +++ b/website/src/features/toolboxes/modules/TimerModule.jsx @@ -78,7 +78,7 @@ function getCountdownMetaParts(countdown, textContent) { if (countdown.type === "interval") { const startLabel = countdown.startMode === "time" && countdown.startTime ? `${textContent.intervalStartTimeLabel || "Départ"} ${countdown.startTime}` - : textContent.intervalStartNowOption || "Maintenant"; + : `${textContent.intervalStartTimeLabel || "Départ"} ${formatTargetTime(countdown.anchorAt)}`; return [`${textContent.intervalType || "Intervalle"} ${formatDuration(countdown.intervalMs || 0)}`, startLabel]; } return [];