Fix super in arrow funcs

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-05-26 10:04:49 +01:00
parent b4284b4c68
commit 3ad3c3ca0a
3 changed files with 15 additions and 8 deletions

View file

@ -39,6 +39,13 @@ export default abstract class VectorBasePlatform extends BasePlatform {
protected showUpdateCheck: boolean = false;
protected _favicon: Favicon;
constructor() {
super();
this.startUpdateCheck = this.startUpdateCheck.bind(this);
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
}
async getConfig(): Promise<{}> {
return getVectorConfig();
}
@ -96,21 +103,21 @@ export default abstract class VectorBasePlatform extends BasePlatform {
return false;
}
startUpdateCheck = () => {
startUpdateCheck() {
this.showUpdateCheck = true;
dis.dispatch({
action: 'check_updates',
value: { status: updateCheckStatusEnum.CHECKING },
});
};
}
stopUpdateCheck = () => {
stopUpdateCheck() {
this.showUpdateCheck = false;
dis.dispatch({
action: 'check_updates',
value: false,
});
};
}
getUpdateCheckStatusEnum() {
return updateCheckStatusEnum;