onSelect(s.key)}
- title={rawLabel || fallbackTitle}
+ title={tooltipTitle}
className="min-w-0 flex-1 overflow-hidden py-1.5 text-left"
>
{title}
diff --git a/webui/src/components/ConnectionBadge.tsx b/webui/src/components/ConnectionBadge.tsx
index 7616ddbe5..a09aadd28 100644
--- a/webui/src/components/ConnectionBadge.tsx
+++ b/webui/src/components/ConnectionBadge.tsx
@@ -36,21 +36,25 @@ export function ConnectionBadge() {
status === "connecting" ||
status === "reconnecting" ||
status === "error";
+ const label = t(`connection.${status}`);
return (
-
+
{pulsing && (
)}
-
+
- {t(`connection.${status}`)}
+ {label}
);
}
diff --git a/webui/src/components/Sidebar.tsx b/webui/src/components/Sidebar.tsx
index cf21c8865..cd55475fe 100644
--- a/webui/src/components/Sidebar.tsx
+++ b/webui/src/components/Sidebar.tsx
@@ -117,12 +117,12 @@ export function Sidebar(props: SidebarProps) {
/>
+