fix: migration 0058 checkconstraint + all sprint 20-23 deployed

This commit is contained in:
Agent Zero
2026-07-29 03:10:26 +02:00
parent 24690fb674
commit 680d5ab6f1
2 changed files with 4 additions and 7 deletions
+3 -3
View File
@@ -273,7 +273,7 @@ function AuditTab() {
action: 'permission_grant,permission_revoke,permission_update',
});
const columns: TableColumn<AuditLogEntry> = [
const columns: TableColumn<AuditLogEntry>[] = [
{
key: 'timestamp',
header: 'Zeitpunkt',
@@ -283,7 +283,7 @@ function AuditTab() {
{
key: 'action',
header: 'Aktion',
render: (row) => {
render: (row: AuditLogEntry) => {
const labels: Record<string, string> = {
permission_grant: 'Freigabe erteilt',
permission_revoke: 'Freigabe entzogen',
@@ -305,7 +305,7 @@ function AuditTab() {
{
key: 'details',
header: 'Details',
render: (row) => {
render: (row: AuditLogEntry) => {
if (!row.details) return '—';
try {
const parsed = JSON.parse(row.details);