mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
🔀 Merge branch 'fix-55' into 'develop'
🩹 — Close menu after rescheduling non-ok checks (fix #55) See merge request framasoft/framaspace/argos!64
This commit is contained in:
commit
b904f4c35d
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue