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:
@ -18,7 +18,7 @@ export class EmployeeService {
|
||||
const getUrl: string = id === null ? `${url}` : `${url}/${id}`;
|
||||
return this.http
|
||||
.get<Employee>(getUrl)
|
||||
.pipe(catchError(this.log.handleError(serviceName, `get id as Observable<Employee>=${id}`))) as Observable<Employee>;
|
||||
.pipe(catchError(this.log.handleError(serviceName, `get id=${id}`))) as Observable<Employee>;
|
||||
}
|
||||
|
||||
list(): Observable<Employee[]> {
|
||||
|
||||
Reference in New Issue
Block a user