From 38ee3a005ed64b6036e990681f3ad9de15227b21 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Mon, 16 Sep 2024 22:26:36 +0400 Subject: [PATCH] Requested changes --- .../components/IntegrationAuditLogsSection.tsx | 4 ++-- .../ConfiguredIntegrationItem.tsx | 12 +++++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/frontend/src/views/IntegrationsPage/IntegrationDetailsPage/components/IntegrationAuditLogsSection.tsx b/frontend/src/views/IntegrationsPage/IntegrationDetailsPage/components/IntegrationAuditLogsSection.tsx index 29aa6a6df..c90f5fef7 100644 --- a/frontend/src/views/IntegrationsPage/IntegrationDetailsPage/components/IntegrationAuditLogsSection.tsx +++ b/frontend/src/views/IntegrationsPage/IntegrationDetailsPage/components/IntegrationAuditLogsSection.tsx @@ -21,7 +21,7 @@ export const IntegrationAuditLogsSection = ({ integration, orgId }: Props) => { // eslint-disable-next-line no-nested-ternary return subscription?.auditLogs ? ( -
+

Integration Logs

@@ -43,7 +43,7 @@ export const IntegrationAuditLogsSection = ({ integration, orgId }: Props) => { />

) : !isLoading ? ( -
+

Integration Logs

diff --git a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/ConfiguredIntegrationItem.tsx b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/ConfiguredIntegrationItem.tsx index 919d6870f..4ae52a94e 100644 --- a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/ConfiguredIntegrationItem.tsx +++ b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/ConfiguredIntegrationItem.tsx @@ -35,8 +35,8 @@ export const ConfiguredIntegrationItem = ({ return (
router.push(`/integrations/details/${integration.id}`)} className="max-w-8xl flex cursor-pointer justify-between rounded-md border border-mineshaft-600 bg-mineshaft-800 p-3 transition-all hover:bg-mineshaft-700" + onClick={() => router.push(`/integrations/details/${integration.id}`)} key={`integration-${integration?.id.toString()}`} >
@@ -211,7 +211,10 @@ export const ConfiguredIntegrationItem = ({