eslint --fix: added missing semicolons

This commit is contained in:
Baptiste Grob
2020-02-04 14:20:20 +01:00
parent 8667aba3de
commit 7d1aff6fe2
36 changed files with 177 additions and 177 deletions

View File

@@ -10,7 +10,7 @@ const Steps = {
PasswordStep: 3,
SyncStep: 4,
FinishStep: 5
}
};
class PasswordWizardCtrl {
/* @ngInject */
@@ -95,12 +95,12 @@ class PasswordWizardCtrl {
this.step++;
this.initializeStep(this.step);
this.isContinuing = false;
}
};
const preprocessor = this.preprocessorForStep(this.step);
if (preprocessor) {
await preprocessor().then(next).catch(() => {
this.isContinuing = false;
})
});
} else {
next();
}
@@ -115,7 +115,7 @@ class PasswordWizardCtrl {
this.showSpinner = false;
this.continueTitle = DEFAULT_CONTINUE_TITLE;
return success;
}
};
}
}
@@ -212,7 +212,7 @@ class PasswordWizardCtrl {
if (!response || response.error) {
this.alertManager.alert({
text: STRING_FAILED_PASSWORD_CHANGE
})
});
return false;
} else {
return true;