Datenschutz vollmacht fixed, two time counter added
This commit is contained in:
@@ -36,10 +36,15 @@ const RESOURCE_OPTIONS = [
|
||||
{ value: 'Contract', label: 'Verträge' },
|
||||
{ value: 'User', label: 'Benutzer' },
|
||||
{ value: 'BankCard', label: 'Bankdaten' },
|
||||
{ value: 'IdentityDocument', label: 'Ausweisdokumente' },
|
||||
{ value: 'Authentication', label: 'Authentifizierung' },
|
||||
{ value: 'IdentityDocument', label: 'Ausweise' },
|
||||
{ value: 'Address', label: 'Adressen' },
|
||||
{ value: 'Meter', label: 'Zähler' },
|
||||
{ value: 'ContractTask', label: 'Aufgaben' },
|
||||
{ value: 'Authentication', label: 'Anmeldung' },
|
||||
{ value: 'CustomerConsent', label: 'Einwilligungen' },
|
||||
{ value: 'GDPR', label: 'DSGVO' },
|
||||
{ value: 'GDPR', label: 'DSGVO / Vollmacht' },
|
||||
{ value: 'EmailProviderConfig', label: 'E-Mail-Provider' },
|
||||
{ value: 'AppSetting', label: 'Einstellungen' },
|
||||
];
|
||||
|
||||
function formatDate(date: string): string {
|
||||
@@ -354,11 +359,12 @@ export default function AuditLogs() {
|
||||
</span>
|
||||
</td>
|
||||
<td className="py-3 px-4">
|
||||
<div>{log.resourceType}</div>
|
||||
{log.resourceLabel && (
|
||||
<div className="text-xs text-gray-500 truncate max-w-[200px]" title={log.resourceLabel}>
|
||||
{log.resourceLabel ? (
|
||||
<div className="text-sm truncate max-w-[300px]" title={log.resourceLabel}>
|
||||
{log.resourceLabel}
|
||||
</div>
|
||||
) : (
|
||||
<div className="text-sm text-gray-500">{log.resourceType}</div>
|
||||
)}
|
||||
</td>
|
||||
<td className="py-3 px-4 font-mono text-xs">{log.ipAddress}</td>
|
||||
|
||||
Reference in New Issue
Block a user