diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bf1f88..40c68f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [0.2.5](https://github.com/eea/volto-forests-theme/compare/0.2.4...0.2.5) + +- fix(discodata connector): send data_query to DataConnectedValue [`007e038`](https://github.com/eea/volto-forests-theme/commit/007e038ddf35aa5bfc3c2a8e5368c70187b5062d) + #### [0.2.4](https://github.com/eea/volto-forests-theme/compare/0.2.3...0.2.4) +> 21 February 2022 + +- lead nav menu always center content [`#58`](https://github.com/eea/volto-forests-theme/pull/58) - Sticky nav pagination also sticky [`a242ed0`](https://github.com/eea/volto-forests-theme/commit/a242ed0193dd06b2d59ce17c568fbf8a1b32784d) -- lead nav menu always center content [`194ead3`](https://github.com/eea/volto-forests-theme/commit/194ead3fdbf1900abd2697308e6522aae5dcaafe) #### [0.2.3](https://github.com/eea/volto-forests-theme/compare/0.2.2...0.2.3) diff --git a/package.json b/package.json index d4a6fdd..e064ac2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-forests-theme", - "version": "0.2.4", + "version": "0.2.5", "description": "@eeacms/volto-forests-theme: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", diff --git a/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx index e615bde..d6ce53b 100644 --- a/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx +++ b/src/components/manage/Blocks/DiscodataConnectorBlock/v1/View.jsx @@ -15,6 +15,12 @@ const providerView = (dataProviderKey, dataProvider, editMode) => { { }, [JSON.stringify(dataProviders)]); const view = ( -
+
{/* {props.data?.block_title ?
{props.data.block_title}
: ''} */} {parentsDataProviders && @@ -175,7 +181,6 @@ export default compose( props.data?.data_providers ?.map((provider) => ({ provider_url: provider.path, - title: provider.title, has_data_query_by_context: provider.has_data_query_by_context, has_data_query_by_provider: provider.has_data_query_by_provider, data_query: provider.data_query,