Skip to content

Commit

Permalink
Merge pull request #3423 from dlabrecq/4276-sort
Browse files Browse the repository at this point in the history
Broken cost explorer sort
  • Loading branch information
dlabrecq authored Oct 6, 2023
2 parents cdd64dd + 48b298b commit b78a4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/explorer/explorerTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ class ExplorerTableBase extends React.Component<ExplorerTableProps, ExplorerTabl
private getSortParams = (index: number): ThProps['sort'] => {
return {
sortBy: this.getSortBy(index),
onSort: this.handleOnSort,
onSort: (_evt, i, direction) => this.handleOnSort(i, direction),
columnIndex: index,
};
};
Expand Down

0 comments on commit b78a4af

Please sign in to comment.