From 43c804d0c42cacdac36f69ba0197a69a12465d97 Mon Sep 17 00:00:00 2001 From: serversdown Date: Fri, 29 May 2026 19:51:58 +0000 Subject: [PATCH] =?UTF-8?q?event-modal:=20relabel=20"Captured=20at"=20?= =?UTF-8?q?=E2=86=92=20"Time=20received"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Captured at" was easily misread as "when the device captured the event" — but that's the event's Timestamp at the top of the modal (unit-local trigger time). source.captured_at is actually when SFM received and stored the event. New label avoids the ambiguity, and the hover tooltip spells it out for anyone unsure. Co-Authored-By: Claude Opus 4.7 (1M context) --- backend/static/event-modal.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/static/event-modal.js b/backend/static/event-modal.js index 162bced..af3d2aa 100644 --- a/backend/static/event-modal.js +++ b/backend/static/event-modal.js @@ -647,7 +647,9 @@
Blastware file ${_esc(bw.filename || '—')} ${sizeKb ? `(${sizeKb} KB)` : ''}
SHA-256 ${_esc(bw.sha256 || '—')}
-
Captured at ${_esc(src.captured_at ? src.captured_at.slice(0, 19).replace('T', ' ') : '—')}
+
+ Time received ${_esc(src.captured_at ? src.captured_at.slice(0, 19).replace('T', ' ') : '—')} +
Tool version ${_esc(src.tool_version || '—')}
`; }