From 77e40bf4ef346f8fc905d2c955f0596e38a92f70 Mon Sep 17 00:00:00 2001 From: sneak Date: Mon, 23 Feb 2026 01:05:10 +0700 Subject: [PATCH] Add Checks counter to summary line --- src/main.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.js b/src/main.js index 988646f..bf127b3 100644 --- a/src/main.js +++ b/src/main.js @@ -470,6 +470,8 @@ function buildUI(state) { Max: --ms | Avg: --ms + | + Checks: 0 @@ -571,6 +573,9 @@ function updateSummary(state) { el.className = "text-gray-500"; } } + + const checksEl = document.getElementById("summary-checks"); + if (checksEl) checksEl.textContent = state.tickCount; } function updateHealthBox(state) {