We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-array-prototype-extensions
1 parent 7e6bca9 commit 63c8f6aCopy full SHA for 63c8f6a
1 file changed
docs/rules/no-array-prototype-extensions.md
@@ -97,7 +97,7 @@ export default class SampleComponent extends Component {
97
98
@action
99
someAction(newItem) {
100
- this.abc = [...abc, newItem];
+ this.abc = [...this.abc, newItem];
101
}
102
103
```
0 commit comments