Skip to content

Commit 645900a

Browse files
authoredJul 6, 2020
Fixed rule name in comments
1 parent 615cacd commit 645900a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/rules/no-static-element-interactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If your element is catching bubbled click or key events from descendant elements
4444

4545
```jsx
4646
{/* The <div> element has a child <button> element that allows keyboard interaction */}
47-
{/* eslint-disable-next-line no-static-element-interactions */}
47+
{/* eslint-disable-next-line jsx-a11y/no-static-element-interactions */}
4848
<div onClick={this.handleButtonClick}>
4949
<button>Save</button>
5050
<button>Cancel</button>

0 commit comments

Comments
 (0)
Please sign in to comment.