From 993e6bb1dfeedc496c770101c30e28f432e13301 Mon Sep 17 00:00:00 2001 From: nate Date: Wed, 18 Mar 2026 19:57:41 +0400 Subject: [PATCH] fix: show full run_id instead of truncating to 8 chars --- apps/web/src/views/detail.ejs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/views/detail.ejs b/apps/web/src/views/detail.ejs index 5df0887..6e75bef 100644 --- a/apps/web/src/views/detail.ejs +++ b/apps/web/src/views/detail.ejs @@ -116,7 +116,7 @@ <%= c.status_code != null ? c.status_code : '—' %> <%= c.latency_ms != null ? c.latency_ms + 'ms' : '—' %> <%= c.region ? (regionFlag[c.region] || '🌐') + ' ' + c.region : '—' %> - <%= c.run_id ? c.run_id.slice(0, 8) + '…' : '—' %> + <%= c.run_id || '—' %> <%~ it.timeAgoSSR(c.checked_at) %><% if (c.jitter_ms != null) { %> (+<%= c.jitter_ms %>ms)<% } %> <%= c.error ? c.error : '' %> @@ -382,7 +382,7 @@ `; } if (result.runId) { - html += `
${result.runId.slice(0, 8)}…
`; + html += `
${result.runId}
`; } tooltip.innerHTML = html; tooltip.classList.remove('hidden'); @@ -457,7 +457,7 @@ ${ping.status_code ?? '—'} ${ping.latency_ms != null ? ping.latency_ms + 'ms' : '—'} ${regionDisplay} - ${ping.run_id ? ping.run_id.slice(0, 8) + '…' : '—'} + ${ping.run_id || '—'} ${timeAgo(ping.checked_at)}${ping.jitter_ms != null ? ` (+${ping.jitter_ms}ms)` : ''} ${ping.error ? escapeHtml(ping.error) : ''} `;