Aw3998 Add click
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2023-12-15 13:49:13 +01:00
parent c6a632894d
commit 31c5e0cb52
2 changed files with 10 additions and 1 deletions

View File

@@ -23,8 +23,9 @@ export abstract class AbstractFeatureListComponent {
handleFeatureClick(feature:Feature<Geometry>) {
if(feature) {
this.store.dispatch(new mapActions.ClickFeature(feature));
const action = this.getAction(feature);
this.store.dispatch(action);
this.store.dispatch(action);
}
}