Skip to content

Commit

Permalink
fix: change request table sort type (#5295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Nov 7, 2023
1 parent 1dc7dd6 commit 06d6227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -162,7 +162,7 @@ export const ChangeRequestsTabs = ({
accessor: 'createdAt',
maxWidth: 100,
Cell: TimeAgoCell,
sortType: 'alphanumeric',
sortType: 'date',
},
{
Header: 'Environment',
Expand Down
Expand Up @@ -72,6 +72,7 @@ export const useApiTokenTable = (
Header: 'Last seen',
accessor: 'seenAt',
Cell: TimeAgoCell,
sortType: 'date',
minWidth: 150,
disableGlobalFilter: true,
},
Expand Down

0 comments on commit 06d6227

Please sign in to comment.