lint fixes

This commit is contained in:
Will Scullin 2021-12-25 13:35:12 -08:00
parent 7ceacec28e
commit 2c02567309
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
3 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
dist
json/disks/index.js
node_modules
tmp

View File

@ -1,7 +1,7 @@
const havePrefs = typeof window.localStorage !== 'undefined';
export default class Prefs {
params: URLSearchParams
params: URLSearchParams;
constructor() {
this.params = new URLSearchParams(window.location.search);

View File

@ -170,5 +170,5 @@ export class OptionsModal {
console.error('Cannot find target div#options-modal-content');
}
MicroModal.show('options-modal');
}
};
}