fix build: linting javascript

This commit is contained in:
Steffen Jost 2019-06-19 10:55:59 +02:00
parent 3bded5071b
commit 4423817ef5
2 changed files with 6 additions and 1 deletions

5
.vscode/tasks.json vendored
View File

@ -63,6 +63,11 @@
"type": "npm", "type": "npm",
"script": "frontend:lint", "script": "frontend:lint",
"problemMatcher": [] "problemMatcher": []
},
{
"type": "npm",
"script": "lint",
"problemMatcher": []
} }
] ]
} }

View File

@ -296,7 +296,7 @@ export class AsyncTable {
return el.getAttribute('href') || el.querySelector('a').getAttribute('href'); return el.getAttribute('href') || el.querySelector('a').getAttribute('href');
} }
_changePagesizeHandler = (event) => { _changePagesizeHandler = () => {
const url = new URL(getLocalStorageParameter('currentTableUrl') || window.location.href); const url = new URL(getLocalStorageParameter('currentTableUrl') || window.location.href);
const formData = new FormData(this._pagesizeForm); const formData = new FormData(this._pagesizeForm);