diff --git a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.ts b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.ts index 4661d4c..f24c7bf 100644 --- a/projects/common-map/src/fm-map/components/feature-list/feature-list.component.ts +++ b/projects/common-map/src/fm-map/components/feature-list/feature-list.component.ts @@ -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) }