mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Minor ui improvements
This commit is contained in:
@@ -25,13 +25,13 @@ export const IntegrationAuditLogsSection = ({ integration, orgId }: Props) => {
|
||||
<div className="mb-4 flex items-center justify-between border-b border-mineshaft-400 pb-4">
|
||||
<p className="text-lg font-semibold text-gray-200">Integration Logs</p>
|
||||
<p className="text-xs text-gray-400">
|
||||
View integration logs from the past {auditLogsRetentionDays} days
|
||||
Displaying audit logs from the last {auditLogsRetentionDays} days
|
||||
</p>
|
||||
</div>
|
||||
<LogsSection
|
||||
refetchInterval={4000}
|
||||
remappedHeaders={{
|
||||
Metadata: "Status"
|
||||
Metadata: "Sync Status"
|
||||
}}
|
||||
showFilters={false}
|
||||
presets={{
|
||||
|
||||
@@ -40,9 +40,6 @@ export const UserAuditLogsSection = withPermission(
|
||||
</Tooltip>
|
||||
</div>
|
||||
<LogsSection
|
||||
remappedHeaders={{
|
||||
Metadata: "Status"
|
||||
}}
|
||||
showFilters={showFilter}
|
||||
filterClassName="bg-mineshaft-900 static"
|
||||
presets={{
|
||||
|
||||
@@ -471,7 +471,7 @@ export const LogsTableRow = ({ auditLog, isOrgAuditLogs, showActorColumn }: Prop
|
||||
isDisabled={!event.metadata.syncMessage}
|
||||
>
|
||||
<Badge variant={event.metadata.isSynced ? "success" : "danger"}>
|
||||
<p className="text-center">{event.metadata.isSynced ? "Synced" : "Not synced"}</p>
|
||||
<p className="text-center">{event.metadata.isSynced ? "Successful" : "Failed"}</p>
|
||||
</Badge>
|
||||
</Tooltip>
|
||||
</Td>
|
||||
|
||||
Reference in New Issue
Block a user