ESLint: fix dangling commas

This commit is contained in:
Yury Bondarenko
2023-06-27 16:23:06 +02:00
parent 725dbc3743
commit 917c36dbe7
1789 changed files with 12452 additions and 12452 deletions

View File

@@ -45,7 +45,7 @@ export class SubmissionCcLicenseUrlDataService extends BaseDataService<Submissio
searchParams: [
{
fieldName: 'license',
fieldValue: ccLicense.id
fieldValue: ccLicense.id,
},
...ccLicense.fields.map(
(field) => {
@@ -54,8 +54,8 @@ export class SubmissionCcLicenseUrlDataService extends BaseDataService<Submissio
fieldValue: options.get(field).id,
};
}),
]
}
],
},
).pipe(
switchMap((href) => this.findByHref(href)),
getFirstSucceededRemoteData(),