We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c01b6b commit 74cdc14Copy full SHA for 74cdc14
web/src/components/ReactTable/index.js
@@ -1,7 +1,7 @@
1
import React from 'react';
2
import { Table } from 'reactstrap';
3
import { useTable, useSortBy } from 'react-table';
4
-import { FaArrowCircleUp, FaArrowCircleDown } from 'react-icons/fa';
+import { FaSortAlphaUp, FaSortAlphaDown } from 'react-icons/fa';
5
6
function ReactTable({ columns, data }) {
7
const {
@@ -33,9 +33,9 @@ function ReactTable({ columns, data }) {
33
{' '}
34
{column.isSorted ? (
35
column.isSortedDesc ? (
36
- <FaArrowCircleDown />
+ <FaSortAlphaUp />
37
) : (
38
- <FaArrowCircleUp />
+ <FaSortAlphaDown />
39
)
40
41
''
0 commit comments