diff --git a/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.ts b/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.ts index 0fea03c..8dbd03b 100644 --- a/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.ts +++ b/projects/common-map/src/fm-map/components/feature-list-container/feature-list-container.component.ts @@ -81,9 +81,11 @@ export class FeatureListContainerComponent { } if ((changes["features"] && changes["features"].currentValue)) { (this.componentRef.instance).features = changes["features"].currentValue; + this.componentRef.changeDetectorRef.detectChanges(); } if(changes["selectedFeature"]) { (this.componentRef.instance).selectedFeature = changes["selectedFeature"].currentValue; + this.componentRef.changeDetectorRef.detectChanges(); } } }