@eeacms/volto-cca-policy 0.1.28 → 0.1.29

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.
package/CHANGELOG.md CHANGED
@@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
- ### [0.1.28](https://github.com/eea/volto-cca-policy/compare/0.1.27...0.1.28) - 16 June 2023
7
+ ### [0.1.29](https://github.com/eea/volto-cca-policy/compare/0.1.28...0.1.29) - 20 June 2023
8
8
 
9
9
  #### :hammer_and_wrench: Others
10
10
 
11
- - Rename search prompt [Tiberiu Ichim - [`4c2e0e3`](https://github.com/eea/volto-cca-policy/commit/4c2e0e343b29515c5a8a1dbeb986a2ca4e292dcf)]
11
+ - Refs #254119 - Override StagingBanner to get rid of /@banner 404 error. [GhitaB - [`464a364`](https://github.com/eea/volto-cca-policy/commit/464a364804e039ff7132416f422d567067ba3b0a)]
12
+ - Refs #254132 - Fix url instead of link in footer actions config. [GhitaB - [`64ab0dc`](https://github.com/eea/volto-cca-policy/commit/64ab0dca2e88c7a0c80f470ab19cee37693db6dc)]
13
+ ### [0.1.28](https://github.com/eea/volto-cca-policy/compare/0.1.27...0.1.28) - 16 June 2023
14
+
12
15
  ### [0.1.27](https://github.com/eea/volto-cca-policy/compare/0.1.26...0.1.27) - 14 June 2023
13
16
 
14
17
  ### [0.1.26](https://github.com/eea/volto-cca-policy/compare/0.1.25...0.1.26) - 13 June 2023
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-cca-policy",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "@eeacms/volto-cca-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -0,0 +1,5 @@
1
+ const StagingBanner = ({ banner, token, dispatch }) => {
2
+ return null;
3
+ };
4
+
5
+ export default StagingBanner;
package/src/index.js CHANGED
@@ -96,11 +96,11 @@ const applyConfig = (config) => {
96
96
  social: [],
97
97
  actions: [
98
98
  {
99
- link: '/en/mission/the-mission/privacy',
99
+ url: '/en/mission/the-mission/privacy',
100
100
  title: 'Privacy',
101
101
  },
102
102
  {
103
- link: '/en/mission/login',
103
+ url: '/en/mission/login',
104
104
  title: 'CMS Login',
105
105
  },
106
106
  ],