Minor cleanup

This commit is contained in:
Ian Renton
2026-07-31 21:49:33 +01:00
parent 23edd4e02e
commit 55a265eb1a
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ function loadStatus() {
<div class="col"><strong>${p["sig_name"]}</strong></div>
<div class="col">Status: ${p["status"]}</div>
<div class="col">Last updated: ${(p["enabled"] && p["last_updated"] > 0) ? moment.unix(p["last_updated"]).utc().fromNow() : "N/A"}</div>
<div class="col">Reference count: ${(p["enabled"] && p["reference_count"] > 0) ? p["reference_count"] : "N/A"}</div>
<div class="col">References: ${(p["enabled"] && p["reference_count"] > 0) ? p["reference_count"] : "N/A"}</div>
</div>`);
});
});