mirror of https://github.com/aredn/aredn.git
Fix bogus reboot message (#1704)
This commit is contained in:
parent
06ed425a55
commit
fa6129be55
|
@ -66,11 +66,12 @@
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
(function(){
|
(function(){
|
||||||
htmx.on("#changes button[name=commit]", "click", e => {
|
const commit = htmx.find("#changes button[name=commit]");
|
||||||
|
htmx.on(commit, "click", e => {
|
||||||
e.target.innerText = "Committing ...";
|
e.target.innerText = "Committing ...";
|
||||||
htmx.find("#changes button[name=revert]").style.display = "none";
|
htmx.find("#changes button[name=revert]").style.display = "none";
|
||||||
window.commitRefresh = setTimeout(_ => htmx.ajax("GET", "/a/changes", "#changes"), 5000);
|
|
||||||
});
|
});
|
||||||
|
htmx.on(commit, "htmx:afterRequest", _ => htmx.ajax("GET", "/a/changes", "#changes"));
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
{% }
|
{% }
|
||||||
|
@ -80,5 +81,4 @@
|
||||||
Reboot required:
|
Reboot required:
|
||||||
<button name="reboot" value="1" hx-get="/a/status/e/reboot" hx-target="body">Reboot</button>
|
<button name="reboot" value="1" hx-get="/a/status/e/reboot" hx-target="body">Reboot</button>
|
||||||
</div>
|
</div>
|
||||||
<script>clearTimeout(window.commitRefresh);</script>
|
|
||||||
{% } %}</div>
|
{% } %}</div>
|
||||||
|
|
Loading…
Reference in New Issue