From 70d22f90ec8efa626db0d82146aa69c4b0dc4db4 Mon Sep 17 00:00:00 2001 From: = Date: Fri, 8 Aug 2025 21:19:58 +0530 Subject: [PATCH] feat: resolved audit log showing all the integration --- .../organization/AuditLogsPage/components/LogsSection.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/organization/AuditLogsPage/components/LogsSection.tsx b/frontend/src/pages/organization/AuditLogsPage/components/LogsSection.tsx index 11869f2da..dcfc6a3f0 100644 --- a/frontend/src/pages/organization/AuditLogsPage/components/LogsSection.tsx +++ b/frontend/src/pages/organization/AuditLogsPage/components/LogsSection.tsx @@ -35,7 +35,8 @@ export const LogsSection = withPermission( const { popUp, handlePopUpOpen, handlePopUpToggle } = usePopUp(["upgradePlan"] as const); const [logFilter, setLogFilter] = useState({ eventType: presets?.eventType || [], - actor: presets?.actorId + actor: presets?.actorId, + eventMetadata: presets?.eventMetadata }); const [timezone, setTimezone] = useState(Timezone.Local);