1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-31 01:16:01 +02:00

fix: change request table sort type (#5295)

This commit is contained in:
Tymoteusz Czech 2023-11-07 17:13:43 +01:00 committed by GitHub
parent 1dc7dd646d
commit 06d62278dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -162,7 +162,7 @@ export const ChangeRequestsTabs = ({
accessor: 'createdAt',
maxWidth: 100,
Cell: TimeAgoCell,
sortType: 'alphanumeric',
sortType: 'date',
},
{
Header: 'Environment',

View File

@ -72,6 +72,7 @@ export const useApiTokenTable = (
Header: 'Last seen',
accessor: 'seenAt',
Cell: TimeAgoCell,
sortType: 'date',
minWidth: 150,
disableGlobalFilter: true,
},