0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 12:25:31 +00:00

Fix js to enable "pause" button when a check is paused but started

This commit is contained in:
Pēteris Caune 2024-10-23 14:28:50 +03:00
parent 374f034bf9
commit 0a4412a493
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 3 additions and 1 deletions
static/js
templates/front

View file

@ -95,7 +95,7 @@ $(function () {
$("#current-status-icon").attr("class", "status ic-" + data.status);
$("#current-status-text").html(data.status_text);
$('#pause-btn').prop('disabled', data.status == "paused");
$('#pause-btn').prop('disabled', data.status == "paused" && !data.started);
}
if (data.started != lastStarted) {

View file

@ -11,6 +11,8 @@
{% if rw %}
<a id="resume-btn" href="#">(Resume&nbsp;Now)</a>
{% endif %}
{% elif status == "paused" and check.last_start %}
This check is ready for pings.
{% elif status == "paused" %}
This check is paused.
{% elif status == "new" and check.n_pings %}