From 256dcf090678cfefd0dae7a89452ff88d0c0768d Mon Sep 17 00:00:00 2001 From: Cheewye Date: Thu, 12 Feb 2026 20:17:56 -0300 Subject: [PATCH] fix(sap): Global Audit single scroll + progressive disclosure Co-authored-by: Cursor --- .../auditoria/GlobalAuditDashboard.tsx | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/auditoria/GlobalAuditDashboard.tsx b/frontend/src/components/auditoria/GlobalAuditDashboard.tsx index c656194a4..c62203d63 100644 --- a/frontend/src/components/auditoria/GlobalAuditDashboard.tsx +++ b/frontend/src/components/auditoria/GlobalAuditDashboard.tsx @@ -602,9 +602,9 @@ export const GlobalAuditDashboard: React.FC = () => { ]; return ( -
+
{/* Header above the audit dashboard */} -
+
{auditCopy.header.monitoring} @@ -632,7 +632,8 @@ export const GlobalAuditDashboard: React.FC = () => {
-
+
+
{/* Button to open legacy dashboard (local dev only) */}
{tabs.map((tab) => ( @@ -863,6 +864,17 @@ export const GlobalAuditDashboard: React.FC = () => { )} +
+ + + + ▶ + + More details (click to expand) + Hide details + + +
{auditCopy.identity.title} @@ -1045,6 +1057,9 @@ export const GlobalAuditDashboard: React.FC = () => {
+
+ +
)} @@ -1477,6 +1492,7 @@ export const GlobalAuditDashboard: React.FC = () => { )}
+
); };