Show finalized vote status text with checkmark

This commit is contained in:
2026-02-04 23:23:33 +01:00
parent 731c8f5cb5
commit ae5a1ef785
3 changed files with 8 additions and 1 deletions

View File

@@ -756,6 +756,11 @@ export function updatePhaseNav() {
waitAdmin.textContent = t("vote.waitAdmin");
}
const voteStatusText = $("vote-status-text");
if (voteStatusText) {
voteStatusText.textContent = state.votesFinal ? t("nav.voteFinalized") : t("nav.voteHint");
}
// Toggle admin-only back buttons
const backButtons = ["nav-vote-prev"];
backButtons.forEach((id) => {