Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Mar 27, 2020
1 parent 7ccc090 commit ab25efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function updateIconState(node: HTMLElement, col: Column) {
}
}

const sortGroups = <HTMLElement>node.getElementsByClassName(cssClass('action-sortgroup'))[0]!;
const sortGroups = <HTMLElement>node.getElementsByClassName(cssClass('action-sort-groups'))[0]!;
if (sortGroups) {
const {asc, priority} = col.isGroupSortedByMe();
sortGroups.dataset.sort = asc !== undefined ? asc : '';
Expand Down

0 comments on commit ab25efe

Please sign in to comment.