Skip to content

Commit

Permalink
feat: restore ordering for date columns
Browse files Browse the repository at this point in the history
  • Loading branch information
HRemonen committed Sep 26, 2024
1 parent e0f7973 commit 6578459
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/client/components/ThesisPage/ThesesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ const ThesesPage = () => {
{
field: 'startDate',
headerName: t('startDateHeader'),
sortable: false,
filterable: false,
width: 140,
valueGetter: (_, row) => dayjs(row.startDate).format('YYYY-MM-DD'),
Expand All @@ -161,7 +160,6 @@ const ThesesPage = () => {
field: 'targetDate',
headerName: t('targetDateHeader'),
description: 'This column has a value getter and is not sortable.',
sortable: false,
filterable: false,
width: 140,
valueGetter: (_, row) => dayjs(row.targetDate).format('YYYY-MM-DD'),
Expand Down

0 comments on commit 6578459

Please sign in to comment.