Chore: Reformatted everthing
Fix: Product ledger was not totalling. This is because for some reason, pydantic was sending the data as string when the field was nullable
This commit is contained in:
@@ -21,8 +21,6 @@ export class IssueGridService {
|
||||
issueGrid(date: string): Observable<IssueGridItem[]> {
|
||||
return this.http
|
||||
.get<IssueGridItem[]>(`${url}/${date}`)
|
||||
.pipe(catchError(this.log.handleError(serviceName, 'autocomplete'))) as Observable<
|
||||
IssueGridItem[]
|
||||
>;
|
||||
.pipe(catchError(this.log.handleError(serviceName, 'autocomplete'))) as Observable<IssueGridItem[]>;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user