From 8221b3a33df1de68890484898403479e3b0af493 Mon Sep 17 00:00:00 2001 From: M1 Date: Wed, 18 Mar 2026 03:05:39 +0400 Subject: [PATCH] fix: remove redundant 'jitter' word from pings table --- 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 f9b60c0..b67a5a5 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)<% } %> <%= 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)` : ''} ${ping.error ? escapeHtml(ping.error) : ''} `; tbody.prepend(tr);