From 65784592dc5022bb7df99c78d94a78ed1bd704dd Mon Sep 17 00:00:00 2001 From: Henri Remonen Date: Thu, 26 Sep 2024 09:22:56 +0300 Subject: [PATCH] feat: restore ordering for date columns --- src/client/components/ThesisPage/ThesesPage.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/client/components/ThesisPage/ThesesPage.tsx b/src/client/components/ThesisPage/ThesesPage.tsx index 9e9ee66..89f8174 100644 --- a/src/client/components/ThesisPage/ThesesPage.tsx +++ b/src/client/components/ThesisPage/ThesesPage.tsx @@ -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'), @@ -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'),