⬆️ Set identical tslint version in all packages and fix lint

issues
This commit is contained in:
Jan Oberhauser
2019-07-10 21:01:22 +02:00
parent a17a376d13
commit cc3f2c42d1
6 changed files with 10 additions and 10 deletions

View File

@@ -151,7 +151,7 @@ export default mixins(
saveDataSuccessExecutionOptions: [] as Array<{ key: string, value: string }>,
saveManualOptions: [] as Array<{ key: string | boolean, value: string }>,
timezones: [] as Array<{ key: string, value: string }>,
workflowSettings: {},
workflowSettings: {} as IWorkflowSettings,
workflows: [] as IWorkflowShortResponse[],
};
},
@@ -171,7 +171,7 @@ export default mixins(
},
async loadSaveDataErrorExecutionOptions () {
this.saveDataErrorExecutionOptions.length = 0;
this.saveDataErrorExecutionOptions.push.apply(
this.saveDataErrorExecutionOptions.push.apply( // eslint-disable-line no-useless-call
this.saveDataErrorExecutionOptions, [
{
key: 'DEFAULT',
@@ -184,13 +184,13 @@ export default mixins(
{
key: 'none',
value: 'Do not save',
}
},
]
);
},
async loadSaveDataSuccessExecutionOptions () {
this.saveDataSuccessExecutionOptions.length = 0;
this.saveDataSuccessExecutionOptions.push.apply(
this.saveDataSuccessExecutionOptions.push.apply( // eslint-disable-line no-useless-call
this.saveDataSuccessExecutionOptions, [
{
key: 'DEFAULT',
@@ -203,7 +203,7 @@ export default mixins(
{
key: 'none',
value: 'Do not save',
}
},
]
);
},