Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Lint fix: jsx-a11y/no-static-element-interactions
Browse files Browse the repository at this point in the history
Looks like it is not picking up the `role` attribute on this `<div>`. Perhaps because it is dynamic? Will revisit.
  • Loading branch information
juanca committed Jul 15, 2018
1 parent 720c84b commit 639e610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/grid/grid-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GridCell extends React.Component {

render() {
return (
<div
<div // eslint-disable-line jsx-a11y/no-static-element-interactions
className={this.props.className}
onBlur={this.onBlur}
onClick={this.onClick}
Expand Down

0 comments on commit 639e610

Please sign in to comment.