diff --git a/apps/web/src/views/detail.ejs b/apps/web/src/views/detail.ejs
index e731607..f9b60c0 100644
--- a/apps/web/src/views/detail.ejs
+++ b/apps/web/src/views/detail.ejs
@@ -96,7 +96,7 @@
<%~ c.up ? 'Up' : 'Down' %> |
<%= c.status_code != null ? c.status_code : '—' %> |
<%= c.latency_ms != null ? c.latency_ms + 'ms' : '—' %> |
- <%~ it.timeAgoSSR(c.checked_at) %><% if (c.jitter_ms != null) { %>(+<%= c.jitter_ms %>ms jitter)<% } %> |
+ <%~ it.timeAgoSSR(c.checked_at) %><% if (c.jitter_ms != null) { %> (+<%= c.jitter_ms %>ms jitter)<% } %> |
<%= c.error ? c.error : '' %> |
<% }) %>
@@ -317,7 +317,7 @@
${ping.up ? 'Up' : 'Down'} |
${ping.status_code ?? '—'} |
${ping.latency_ms != null ? ping.latency_ms + 'ms' : '—'} |
- ${timeAgo(ping.checked_at)}${ping.jitter_ms != null ? `(+${ping.jitter_ms}ms jitter)` : ''} |
+ ${timeAgo(ping.checked_at)}${ping.jitter_ms != null ? ` (+${ping.jitter_ms}ms jitter)` : ''} |
${ping.error ? escapeHtml(ping.error) : ''} |
`;
tbody.prepend(tr);