We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01dfe81 commit bc4788aCopy full SHA for bc4788a
apps/sim/ee/audit-logs/components/audit-logs.tsx
@@ -141,7 +141,8 @@ function AuditLogRow({ entry }: AuditLogRowProps) {
141
<span className='text-[var(--text-primary)]'>{entry.description}</span>
142
</div>
143
)}
144
- {entry.metadata != null && Object.keys(entry.metadata as Record<string, unknown>).length > 0 ? (
+ {entry.metadata != null &&
145
+ Object.keys(entry.metadata as Record<string, unknown>).length > 0 ? (
146
<div className='flex gap-2'>
147
<span className='w-[100px] flex-shrink-0 text-[var(--text-muted)]'>Details</span>
148
<pre className='min-w-0 flex-1 overflow-x-auto whitespace-pre-wrap break-all text-[var(--text-secondary)] text-xs'>
0 commit comments