diff --git a/static/papermod/index.html b/static/papermod/index.html index f4aa8e1..5fbe72b 100644 --- a/static/papermod/index.html +++ b/static/papermod/index.html @@ -372,7 +372,8 @@ function clear() { document.querySelector('.week').textContent = ''; document.querySelector('.date').textContent = ''; - document.querySelectorAll('td').forEach(el => el.innerHTML = ' '); + document.querySelectorAll('.month td').forEach(el => el.innerHTML = ' '); + document.querySelectorAll('.week td').forEach(el => el.innerHTML = ' '); } document.querySelector('#settings-update').onclick = update;