From 24b072a1202c1bdf43bae097aa48b080f5d692f3 Mon Sep 17 00:00:00 2001
From: Luca <71656192+12LuA@users.noreply.github.com>
Date: Sun, 6 Sep 2026 17:31:47 +0200
Subject: [PATCH] fix: Rename user.avatar to owner and disable sorting
---
frontend/src/pages/AuditLog/Table.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/frontend/src/pages/AuditLog/Table.tsx b/frontend/src/pages/AuditLog/Table.tsx
index 2be8e72bf..886c922b9 100644
--- a/frontend/src/pages/AuditLog/Table.tsx
+++ b/frontend/src/pages/AuditLog/Table.tsx
@@ -16,7 +16,8 @@ export default function Table({ data, isFetching, onSelectItem }: Props) {
const columns = useMemo(
() => [
columnHelper.accessor((row: any) => row.user, {
- id: "user.avatar",
+ id: "owner",
+ enableSorting: false,
cell: (info: any) => {
const value = info.getValue();
return ;
@@ -28,6 +29,7 @@ export default function Table({ data, isFetching, onSelectItem }: Props) {
columnHelper.accessor((row: any) => row, {
id: "objectType",
header: intl.formatMessage({ id: "column.event" }),
+ enableSorting: false,
cell: (info: any) => {
return ;
},