Skip to content

Commit

Permalink
fix: swap sort indicating arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
mxposed committed Mar 9, 2023
1 parent 3cae87a commit 839f405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,9 @@ class FHeatmap {
.attr('fill', '#1385cb');
}
if (column.sortState === "asc") {
this.sortIndicator.text('↓');
} else {
this.sortIndicator.text('↑');
} else {
this.sortIndicator.text('↓');
}
this.sortIndicator
.attr('text-anchor', 'right')
Expand Down

0 comments on commit 839f405

Please sign in to comment.