Chore: ng lint using the recommended @angular-eslint style
This commit is contained in:
@ -24,10 +24,10 @@ export class BillSettlementReportService {
|
||||
if (finishDate !== null) {
|
||||
options.params = options.params.set('f', finishDate);
|
||||
}
|
||||
return <Observable<BillSettlementReport>>(
|
||||
this.http
|
||||
.get<BillSettlementReport>(url, options)
|
||||
.pipe(catchError(this.log.handleError(serviceName, 'get')))
|
||||
);
|
||||
return this.http
|
||||
.get<BillSettlementReport>(url, options)
|
||||
.pipe(
|
||||
catchError(this.log.handleError(serviceName, 'get')),
|
||||
) as Observable<BillSettlementReport>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user