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) : ''} |
`;