From 1409001266c0fde90c0de74d06528f827ac6148c Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 12 May 2025 23:56:57 +0200 Subject: [PATCH] Add another official holiday in bold --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 280087e..522ea6c 100644 --- a/static/app.js +++ b/static/app.js @@ -86,7 +86,7 @@ function renderTable() { dateTd.style.minWidth = '100px'; dateTd.style.maxWidth = '140px'; dateTd.style.textAlign = 'left'; - if (date === '29/05/25' || date === '25/12/25') { + if (date === '29/05/25' || date === '25/12/25' || date === '01/01/26') { const strong = document.createElement('strong'); strong.innerText = date; dateTd.appendChild(strong);