Skip to content

Commit

Permalink
Merge pull request #95 from ember-a11y/dependabot/npm_and_yarn/eslint…
Browse files Browse the repository at this point in the history
…-plugin-ember-8.14.0

Bump eslint-plugin-ember from 7.13.0 to 8.14.0
  • Loading branch information
KamiKillertO authored Oct 2, 2020
2 parents 8d18a7b + f993aa6 commit 2f85afd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
4 changes: 2 additions & 2 deletions addon/components/a11y-landmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ export default Component.extend({
* since nothing is going to be the direct child of the body in an Ember app, we don't have to check for that.
*/
ariaRole: computed('tagName', 'landmarkRole', function() {
const landmark = this.get('tagName');
const landmarkRole = this.get('landmarkRole');
const landmark = this.tagName;
const landmarkRole = this.landmarkRole;

if (landmark && landmarkRole) {
if (landmark === 'form' && landmarkRole === 'search') {
Expand Down
23 changes: 19 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"ember-source": "~3.16.0",
"ember-source-channel-url": "^3.0.0",
"ember-try": "^1.4.0",
"eslint-plugin-ember": "^7.7.2",
"eslint-plugin-ember": "^8.14.0",
"eslint-plugin-node": "^11.0.0",
"loader.js": "^4.7.0",
"qunit-dom": "^1.0.0",
Expand Down

0 comments on commit 2f85afd

Please sign in to comment.