We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18819d6 commit 43e5d5cCopy full SHA for 43e5d5c
src/modules/activity/ActivityTable.tsx
@@ -37,6 +37,22 @@ const ActivityFeedColumnsTable: ColumnDef<ActivityEvent>[] = [
37
filterFn: "arrIncludesSomeExact",
38
cell: ({ row }) => <ActivityEntryRow event={row.original} />,
39
},
40
+ {
41
+ id: "activity_text",
42
+ accessorFn: (event) => {
43
+ try {
44
+ if (event.meta) {
45
+ return Object.keys(event.meta)
46
+ .map((key) => {
47
+ return `${event?.meta[key]}`;
48
+ })
49
+ .join(" ");
50
+ }
51
+ } catch (error) {
52
+ return "";
53
54
+ },
55
56
{
57
accessorKey: "timestamp",
58
id: "timestamp",
@@ -103,6 +119,7 @@ export default function ActivityTable({
103
119
columnVisibility={{
104
120
timestamp: false,
105
121
name: false,
122
+ activity_text: false,
106
123
initiator_email: false,
107
124
}}
108
125
getStartedCard={
0 commit comments