diff --git a/src/modules/activity/ActivityTable.tsx b/src/modules/activity/ActivityTable.tsx index 15d55a64..027a7fcb 100644 --- a/src/modules/activity/ActivityTable.tsx +++ b/src/modules/activity/ActivityTable.tsx @@ -37,6 +37,22 @@ const ActivityFeedColumnsTable: ColumnDef[] = [ filterFn: "arrIncludesSomeExact", cell: ({ row }) => , }, + { + id: "activity_text", + accessorFn: (event) => { + try { + if (event.meta) { + return Object.keys(event.meta) + .map((key) => { + return `${event?.meta[key]}`; + }) + .join(" "); + } + } catch (error) { + return ""; + } + }, + }, { accessorKey: "timestamp", id: "timestamp", @@ -103,6 +119,7 @@ export default function ActivityTable({ columnVisibility={{ timestamp: false, name: false, + activity_text: false, initiator_email: false, }} getStartedCard={