Skip to content
Snippets Groups Projects
Commit 46cf98e5 authored by esikkala's avatar esikkala
Browse files

Fix TableSortLabel prop

parent c38c20ff
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ const ResultTableHead = props => {
>
<TableSortLabel
active={sortBy === column.id}
direction={sortBy === column.id ? sortBy : 'asc'}
direction={sortBy === column.id ? sortDirection : 'asc'}
hideSortIcon
onClick={onSortBy(column.id)}
>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment