Skip to content

Commit

Permalink
#1913: Fix - Dataset filtering option missing
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuren1 committed Dec 3, 2024
1 parent 860eca2 commit 6406fed
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion geonode_mapstore_client/client/js/plugins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import omit from 'lodash/omit';
import uniq from 'lodash/uniq';
import {
LayerDownloadActionButton,
FilterLayerActionButton,
FullScreenActionButton,
AddWidgetActionButton
} from '@js/plugins/actionnavbar/buttons';
Expand Down Expand Up @@ -124,7 +125,17 @@ export const plugins = {
),
FilterLayerPlugin: toModulePlugin(
'FilterLayer',
() => import(/* webpackChunkName: 'plugins/filter-layer-plugin' */ '@mapstore/framework/plugins/FilterLayer')
() => import(/* webpackChunkName: 'plugins/filter-layer-plugin' */ '@mapstore/framework/plugins/FilterLayer'),
{
overrides: {
containers: {
ActionNavbar: {
name: 'FilterLayer',
Component: FilterLayerActionButton
}
}
}
}
),
MeasurePlugin: toModulePlugin(
'Measure',
Expand Down

0 comments on commit 6406fed

Please sign in to comment.