From 566520f43e980e2cbff346e528e454b8fac4a2ae Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 10 May 2026 14:29:44 +0100 Subject: [PATCH] Add hover title to Workloads focused-label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When the Workloads summary band shows a focused workload name (e.g. "— delly"), the label uses `truncate` with no title, so a long workload name clips with no way to read the rest. Add a title attribute mirroring the rendered name so hovering reveals the full string. --- .../src/components/Workloads/WorkloadsSummary.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend-modern/src/components/Workloads/WorkloadsSummary.tsx b/frontend-modern/src/components/Workloads/WorkloadsSummary.tsx index cef092570..9fdc281c7 100644 --- a/frontend-modern/src/components/Workloads/WorkloadsSummary.tsx +++ b/frontend-modern/src/components/Workloads/WorkloadsSummary.tsx @@ -609,7 +609,11 @@ export const WorkloadsSummary: Component = (props) => { const focusedLabel = () => { const name = focusedWorkloadName(); if (!name) return undefined; - return — {name}; + return ( + + — {name} + + ); }; const renderSyncedReadout = ( readout: { empty?: boolean; timestamp: number; value: string } | null,