Skip to content

Commit b3b111a

Browse files
committed
Fix super minor formatting
1 parent 8eedd37 commit b3b111a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

client/src/pages/algorithms/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import { Item } from "components/Item";
44
import { Tip } from "components/Tip";
55
import { Analysis } from "components/analysis/Analysis";
66
import { 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";
813
import { GridColDef } from "components/data-grid/DataGrid";
914
import { useSurface } from "components/surface";
1015
import { 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
];

0 commit comments

Comments
 (0)