From a246b60cbeda23ec85ecd713244c5da0ffb23433 Mon Sep 17 00:00:00 2001 From: M1 Date: Tue, 17 Mar 2026 11:23:01 +0400 Subject: [PATCH] fix: space between time and jitter label --- apps/web/src/views/detail.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);