Skip to content

Commit

Permalink
Merge pull request #2765 from Infisical/daniel/actor-id-mismatch
Browse files Browse the repository at this point in the history
fix(audit-logs): actor / actor ID mismatch
  • Loading branch information
DanielHougaard authored Nov 20, 2024
2 parents 9a62efe + 96e331b commit d03b453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/hooks/api/auditLogs/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type TGetAuditLogsFilter = {
eventMetadata?: Record<string, string>;
actorType?: ActorType;
projectId?: string;
actorId?: string; // user ID format
actor?: string; // user ID format
startDate?: Date;
endDate?: Date;
limit: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const LogsSection = ({
userAgentType,
startDate,
endDate,
actorId: actor
actor
}}
/>
<UpgradePlanModal
Expand Down

0 comments on commit d03b453

Please sign in to comment.