Skip to content
This repository has been archived by the owner on May 11, 2020. It is now read-only.

Commit

Permalink
Fix code style issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
kedamaDQ committed Feb 9, 2019
1 parent 6a0e5cf commit 7f8df50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sp_table.js
Expand Up @@ -252,7 +252,7 @@ export default class SpTable extends React.PureComponent {
console.log(`passiveSuppoted: ${passiveSupported}`)
passiveSupported = false;
}
this.table.addEventListener('scroll', this.handleScroll, (passiveSupported) ? { passive: true} : false);
this.table.addEventListener('scroll', this.handleScroll, (passiveSupported) ? { passive: true } : false);
}

componentWillUnmount() {
Expand Down

0 comments on commit 7f8df50

Please sign in to comment.