@provoly/dashboard 0.13.10 → 0.13.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1305,6 +1305,7 @@ const DashboardActions = {
1305
1305
  updateFilters: createAction('[Dashboard] (bus) update datasource filters', props()),
1306
1306
  removeFilter: createAction('[Dashboard] (bus) remove filter in presentation', props()),
1307
1307
  updateFilterValue: createAction('[Dashboard] (bus) update filter value', props()),
1308
+ resetWmsFeatures: createAction('[Widget map] Reset Wms layer features'),
1308
1309
  getWmsFeatures: createAction('[Widget map] Get Wms layer features', props()),
1309
1310
  addWmsFeatures: createAction('[Widget map] Set Wms layer features', props()),
1310
1311
  updateDisplayOptions: createAction('[Dashboard/Display] Update displayed dashboard management features', props())
@@ -10689,7 +10690,7 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
10689
10690
  }
10690
10691
  }
10691
10692
  };
10692
- }), on(DashboardActions.getWmsFeatures, (state, action) => ({
10693
+ }), on(DashboardActions.getWmsFeatures, DashboardActions.resetWmsFeatures, (state, action) => ({
10693
10694
  ...state,
10694
10695
  wmsFeatures: []
10695
10696
  })), on(DashboardActions.addWmsFeatures, (state, action) => {