From 3f1c66ec01120d425c9664b59ab00a9951c8971b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez?= Date: Mon, 22 Dec 2025 19:33:53 +0100 Subject: [PATCH] ui: adjustments --- src/components/ReqViewer.tsx | 36 ++++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/src/components/ReqViewer.tsx b/src/components/ReqViewer.tsx index a78be69..943cc75 100644 --- a/src/components/ReqViewer.tsx +++ b/src/components/ReqViewer.tsx @@ -946,7 +946,7 @@ export default function ReqViewer({ - +

{getStatusTooltip(overallState)}

@@ -1057,11 +1057,11 @@ export default function ReqViewer({ // Build comprehensive tooltip content const tooltipContent = ( -
-
+
+
{url}
-
+
Connection: @@ -1133,16 +1133,25 @@ export default function ReqViewer({
{/* Event count badge */} {reqState && reqState.eventCount > 0 && ( -
- [{reqState.eventCount}] +
+ + {reqState.eventCount}
)} - {/* EOSE checkmark */} - {reqState && - reqState.subscriptionState === "eose" && ( - - )} + {/* EOSE status */} + {reqState && ( + <> + {reqState.subscriptionState === "eose" ? ( + + ) : ( + (reqState.subscriptionState === "receiving" || + reqState.subscriptionState === "waiting") && ( + + ) + )} + + )} {/* Auth icon (always visible) */}
{authIcon.icon}
@@ -1152,7 +1161,10 @@ export default function ReqViewer({
- + {tooltipContent}