Fix: Post voucher was not working. Replace command had borked the url.

Fix: Attendace report file name contained single quotes and did not open in excel
This commit is contained in:
2020-12-08 12:59:26 +05:30
parent 1f21438a4c
commit ccf2f704b6
13 changed files with 31 additions and 12 deletions

View File

@ -20,7 +20,7 @@ export class RoleService {
const getUrl: string = id === null ? `${url}` : `${url}/${id}`;
return this.http
.get<Role>(getUrl)
.pipe(catchError(this.log.handleError(serviceName, `get id as Observable<Role>=${id}`))) as Observable<Role>;
.pipe(catchError(this.log.handleError(serviceName, `get id=${id}`))) as Observable<Role>;
}
list(): Observable<Role[]> {