🩹 — Close menu after rescheduling non-ok checks (fix #55)

This commit is contained in:
Luc Didry 2024-07-09 07:50:54 +02:00 committed by Luc Didry
parent 77dbc8bb3a
commit ef1eb6ed6e
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
2 changed files with 3 additions and 1 deletions

View file

@ -5,6 +5,7 @@
- 🩹 — Fix release documentation
- ✅ — Add mypy test
- ✨ — Add new check type: status-in
- 🩹 — Close menu after rescheduling non-ok checks (#55)
## 0.2.2

View file

@ -34,7 +34,7 @@
</a>
{% if request.url.remove_query_params('msg') != url_for('login_view') %}
<ul>
<details class="dropdown">
<details id="nav-menu" class="dropdown">
<summary autofocus>Menu</summary>
<ul>
<li>
@ -115,6 +115,7 @@
document.getElementById('reschedule-all').addEventListener('click', event => {
event.preventDefault();
rescheduleAll();
document.getElementById('nav-menu').open = false;
});
</script>
</body>