From 2b2c5d87ddf3959533a55233ce383100af1ac47f Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sat, 9 May 2026 22:54:12 +0100 Subject: [PATCH] Add hover titles to more truncated rows Continuing the truncate-cell tooltip pass: - Audit Webhooks panel: each configured webhook URL was rendered with `truncate` and no title, so a long endpoint URL clipped past the visible card width with no way to read the rest. - SSO Providers panel: provider name and summary lines used `truncate` without a title, so a long display name or summary became unreadable in the row. Add `title` attributes mirroring the visible content on each so hover reveals the full string. Same shape as the Alert History fix in the previous commit. --- .../src/components/Settings/AuditWebhookPanel.tsx | 4 +++- .../src/components/Settings/SSOProvidersPanel.tsx | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend-modern/src/components/Settings/AuditWebhookPanel.tsx b/frontend-modern/src/components/Settings/AuditWebhookPanel.tsx index 43094f897..af3871438 100644 --- a/frontend-modern/src/components/Settings/AuditWebhookPanel.tsx +++ b/frontend-modern/src/components/Settings/AuditWebhookPanel.tsx @@ -109,7 +109,9 @@ export const AuditWebhookPanel: Component = (props) => {
- {url} + + {url} +