Skip to content

Commit

Permalink
#1913: Fix - Dataset filtering option missing (#1914) (#1924)
Browse files Browse the repository at this point in the history
(cherry picked from commit d05f04a)

Co-authored-by: Suren <dsuren1@gmail.com>
  • Loading branch information
github-actions[bot] and dsuren1 authored Dec 10, 2024
1 parent d0bed89 commit ca9cd4e
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 @@ -122,7 +123,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 ca9cd4e

Please sign in to comment.