Added level to get features call
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
2021-03-16 21:30:20 +01:00
parent 5b710ce200
commit a42059627a
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ export class ItemService {
}
if (parentCode) params = params.append("pc", parentCode);
if (dataFilter) params = params.append("df", dataFilter);
if (level) params = params.append("lvl", dataFilter);
if (level) params = params.append("lvl", level);
return this.httpClient.get<any>(`${this.ApiEndpoint()}/api/v1/items/features/`, {params:params});
}