File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,22 @@ const ActivityFeedColumnsTable: ColumnDef<ActivityEvent>[] = [
37
37
filterFn : "arrIncludesSomeExact" ,
38
38
cell : ( { row } ) => < ActivityEntryRow event = { row . original } /> ,
39
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
+ } ,
40
56
{
41
57
accessorKey : "timestamp" ,
42
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 = {
You can’t perform that action at this time.
0 commit comments