forked from hazza/dspace-angular
ESLint: fix dangling commas
This commit is contained in:
@@ -80,9 +80,9 @@ export class ProcessFormComponent implements OnInit {
|
||||
const stringParameters: ProcessParameter[] = this.parameters.map((parameter: ProcessParameter) => {
|
||||
return {
|
||||
name: parameter.name,
|
||||
value: this.checkValue(parameter)
|
||||
value: this.checkValue(parameter),
|
||||
};
|
||||
}
|
||||
},
|
||||
);
|
||||
this.scriptService.invoke(this.selectedScript.id, stringParameters, this.files)
|
||||
.pipe(getFirstCompletedRemoteData())
|
||||
|
Reference in New Issue
Block a user