Show status latency at end of detail line in API panel

Reorder the Status card meta() detail so HTTP status and URL come
first and the latency (ms) reads last, e.g. "HTTP 200 · <url> · 12ms".
Rebuild the embedded panel assets.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
tajniak81
2026-07-13 18:36:17 +02:00
co-authored by Claude Opus 4.8
parent 09da889c15
commit e3106d7b60
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -701,9 +701,9 @@ const badge = {
function meta(h) {
const bits = [];
if (typeof h.latencyMs === "number") bits.push(h.latencyMs + "ms");
if (h.httpStatus) bits.push("HTTP " + h.httpStatus);
if (h.url) bits.push(h.url);
if (typeof h.latencyMs === "number") bits.push(h.latencyMs + "ms");
return bits.join(" · ");
}