fix: make sorting consistent around tables

This commit is contained in:
Elias Schneider
2025-03-10 12:37:16 +01:00
parent 04efc36115
commit 8e344f1151
18 changed files with 131 additions and 169 deletions

View File

@@ -3,6 +3,8 @@
import AuditLogList from './audit-log-list.svelte';
let { data } = $props();
let { auditLogs } = data;
let auditLogsRequestOptions = $state(data.auditLogsRequestOptions);
</script>
<svelte:head>
@@ -17,6 +19,6 @@
>
</Card.Header>
<Card.Content>
<AuditLogList auditLogs={data.auditLogs} />
<AuditLogList auditLogs={data.auditLogs} requestOptions={auditLogsRequestOptions} />
</Card.Content>
</Card.Root>