Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Bastiani 29968a736c Merge branch 'develop' of https://git.akkerweb.nl/FarmMaps/FarmMapsLib into develop
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details
2021-05-06 14:05:49 +02:00
Peter Bastiani 077afcb0d7 Fix validToday 2021-05-06 14:05:43 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ export class ItemService {
if(atItemLocationItemCode) params = params.append("ail",atItemLocationItemCode);
if(indexed) params = params.append("ind",indexed?"true":"false");
if (level) params = params.append("lvl", level.toFixed());
if (validToday) params = params.append("vt", indexed ? "true" : "false");
if (validToday) params = params.append("vt", validToday ? "true" : "false");
return this.httpClient.get<IItem[]>(`${this.ApiEndpoint()}/api/v1/items/`, { params: params });
}