mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-04 21:05:26 +00:00
Fix clicks on log events
This commit is contained in:
parent
10014af352
commit
29da76b953
2 changed files with 7 additions and 2 deletions
|
@ -134,7 +134,9 @@ $(function () {
|
|||
});
|
||||
|
||||
$("#events").on("click", "tr.ok", function() {
|
||||
loadPingDetails(this.dataset.url);
|
||||
var n = $("td", this).first().text();
|
||||
var tmpl = $("#log").data("url").slice(0, -2);
|
||||
loadPingDetails(tmpl + n + "/");
|
||||
return false;
|
||||
});
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{% load hc_extras %}
|
||||
{% if events %}
|
||||
<table class="table" id="log">{% for event in events %}{% include "front/log_row.html" %}{% endfor %}</table>
|
||||
<table
|
||||
class="table"
|
||||
id="log"
|
||||
data-url="{% url 'hc-ping-details' check.code '0' %}">{% for event in events %}{% include "front/log_row.html" %}{% endfor %}</table>
|
||||
<p class="text-center"><a href="{% url 'hc-log' check.code %}">Show More…</a></p>
|
||||
{% else %}
|
||||
<div class="alert no-events">
|
||||
|
|
Loading…
Add table
Reference in a new issue