File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
client/src/pages/algorithms Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,12 @@ import { Item } from "components/Item";
44import { Tip } from "components/Tip" ;
55import { Analysis } from "components/analysis/Analysis" ;
66import { formatLargeNumber } from "components/charts/CompletionByAlgorithmChart" ;
7- import { Bar , DataGrid , cellRendererChip } from "components/data-grid" ;
7+ import {
8+ Bar ,
9+ DataGrid ,
10+ cellRendererChip ,
11+ cellRendererText ,
12+ } from "components/data-grid" ;
813import { GridColDef } from "components/data-grid/DataGrid" ;
914import { useSurface } from "components/surface" ;
1015import { AlgorithmDetails } from "core/types" ;
@@ -149,6 +154,7 @@ function Table() {
149154 sortable : true ,
150155 type : "date" as const ,
151156 fold : true ,
157+ renderCell : cellRendererText ,
152158 valueFormatter : ( v ) => ( isUndefined ( v ) ? "N/A" : formatDate ( v ) ) ,
153159 } ,
154160 ] ;
You can’t perform that action at this time.
0 commit comments