AW-5727 - Farms blijft leeg bij harde reload
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

develop
Wilco Krikke 2023-12-19 14:14:57 +01:00
parent 67abc67d9a
commit ef49f62ca2
1 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,9 @@ export class FeatureListContainerComponent {
viewContainerRef.clear();
if(showItem) {
this.componentRef = viewContainerRef.createComponent(componentFactory);
(<AbstractFeatureListComponent>this.componentRef.instance).features = null;
(<AbstractFeatureListComponent>this.componentRef.instance).queryState = queryState;
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = null;
(<AbstractFeatureListComponent>this.componentRef.instance).features = this.features;
(<AbstractFeatureListComponent>this.componentRef.instance).queryState = this.queryState;
(<AbstractFeatureListComponent>this.componentRef.instance).selectedFeature = this.selectedFeature;
}
}