Also supply parentcode and itemtype
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

feature/MinimizeSolution
Willem Dantuma 2020-04-16 16:01:06 +02:00
parent 3e0cf6d691
commit 0b32153489
1 changed files with 2 additions and 0 deletions

View File

@ -29,7 +29,9 @@ export abstract class AbstractFeatureListComponent {
getAction(feature:Feature):Action {
var newQuery: any = tassign(mapReducers.initialState.query);
newQuery.parentCode = feature.get('parentCode');
newQuery.itemCode = feature.get('code');
newQuery.itemType = feature.get('itemType');
return new mapActions.DoQuery(newQuery)
}