Fixed: Indexer sort is case sensitive

This commit is contained in:
Qstick
2021-06-01 21:56:35 -04:00
parent e999b869a6
commit 56850aa6d9
7 changed files with 27 additions and 7 deletions
@@ -4,7 +4,7 @@
flex: 0 0 60px;
}
.name {
.sortName {
composes: headerCell from '~Components/Table/VirtualTableHeaderCell.css';
flex: 4 0 110px;
@@ -11,7 +11,7 @@
flex: 0 0 60px;
}
.name {
.sortName {
composes: cell;
flex: 4 0 110px;
@@ -136,7 +136,7 @@ class IndexerIndexRow extends Component {
);
}
if (column.name === 'name') {
if (column.name === 'sortName') {
return (
<VirtualTableRowCell
key={column.name}