File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,10 +66,10 @@ export const ProjectStatsSection = ({ userFilter }: ProjectStatsSectionProps) =>
66
66
header : "Creator" ,
67
67
enableColumnFilter : true ,
68
68
} ) ,
69
- projectColumnHelper . accessor ( "administrators" , {
69
+ projectColumnHelper . accessor ( ( row ) => row . administrators . join ( ", " ) , {
70
+ id : "administrators" ,
70
71
header : "Admins" ,
71
72
enableColumnFilter : true ,
72
- cell : ( { row } ) => row . original . administrators . join ( ", " ) ,
73
73
} ) ,
74
74
projectColumnHelper . accessor ( ( row ) => formatTierString ( row . product ?. flavour ?? "" ) , {
75
75
id : "tier" ,
@@ -182,7 +182,7 @@ export const ProjectStatsSection = ({ userFilter }: ProjectStatsSectionProps) =>
182
182
} ,
183
183
"& tr" : {
184
184
display : "grid" ,
185
- gridTemplateColumns : "61px 1fr 1fr 1fr 110px 220px 100px 100px 100px 110px " ,
185
+ gridTemplateColumns : "61px 1fr 1fr 1fr 110px 220px 100px 90px 100px 130px " ,
186
186
} ,
187
187
} ,
188
188
} }
@@ -203,7 +203,7 @@ export const ProjectStatsSection = ({ userFilter }: ProjectStatsSectionProps) =>
203
203
} ,
204
204
"& tr" : {
205
205
display : "grid" ,
206
- gridTemplateColumns : "61px 1fr 110px 220px 100px 100px 100px 100px " ,
206
+ gridTemplateColumns : "61px 1fr 110px 220px 100px 90px 100px 130px " ,
207
207
} ,
208
208
} ,
209
209
} }
You can’t perform that action at this time.
0 commit comments