Skip to content

Commit

Permalink
Fix compare sorts. Re: #255
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsage committed Aug 25, 2024
1 parent a7dc056 commit 860b44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/renderJS/compare_ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class windowState {
})

for ( const element of MA.query('.sort-up, .sort-down') ) {
element.addEventListener('click', () => { this.changeSort() })
element.addEventListener('click', (e) => { this.changeSort(e) })
}

MA.byId('clearButton').addEventListener('click', () => {
Expand Down

0 comments on commit 860b44e

Please sign in to comment.