feat: add CSV export to audit log

This commit is contained in:
hsiegeln
2026-04-09 18:43:46 +02:00
parent 2ede06f32a
commit 605c8ad270
8 changed files with 130 additions and 77 deletions

View File

@@ -20,6 +20,7 @@ import {
useDeleteRole,
} from '../../api/queries/admin/rbac';
import type { RoleDetail } from '../../api/queries/admin/rbac';
import { PageLoader } from '../../components/PageLoader';
import styles from './UserManagement.module.css';
export default function RolesTab({ highlightId, onHighlightConsumed }: { highlightId?: string | null; onHighlightConsumed?: () => void }) {
@@ -115,7 +116,7 @@ export default function RolesTab({ highlightId, onHighlightConsumed }: { highlig
);
}
if (isLoading) return <Spinner size="md" />;
if (isLoading) return <PageLoader />;
return (
<>