@eeacms/volto-marine-policy 1.1.17 → 1.1.18

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,6 +4,12 @@ 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
+ ### [1.1.18](https://github.com/eea/volto-marine-policy/compare/1.1.17...1.1.18) - 10 July 2024
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix: remove /policy-and-reporting from externalRoutes [laszlocseh - [`36c2887`](https://github.com/eea/volto-marine-policy/commit/36c2887d738ac81c615a18bbdea2d5ed3dc66eb1)]
12
+
7
13
  ### [1.1.17](https://github.com/eea/volto-marine-policy/compare/1.1.16...1.1.17) - 10 July 2024
8
14
 
9
15
  #### :bug: Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-marine-policy",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "description": "@eeacms/volto-marine-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
package/src/index.js CHANGED
@@ -245,28 +245,28 @@ const applyConfig = (config) => {
245
245
  return payload.location.pathname;
246
246
  },
247
247
  },
248
- {
249
- match: {
250
- path:
251
- '/(.*)marine(-new)?/policy-and-reporting/assessment-by-country(.*)',
252
- exact: false,
253
- strict: false,
254
- },
255
- url(payload) {
256
- return payload.location.pathname;
257
- },
258
- },
259
- {
260
- match: {
261
- path:
262
- '/(.*)marine(-new)?/policy-and-reporting/assessment-by-region(.*)',
263
- exact: false,
264
- strict: false,
265
- },
266
- url(payload) {
267
- return payload.location.pathname;
268
- },
269
- },
248
+ // {
249
+ // match: {
250
+ // path:
251
+ // '/(.*)marine(-new)?/policy-and-reporting/assessment-by-country(.*)',
252
+ // exact: false,
253
+ // strict: false,
254
+ // },
255
+ // url(payload) {
256
+ // return payload.location.pathname;
257
+ // },
258
+ // },
259
+ // {
260
+ // match: {
261
+ // path:
262
+ // '/(.*)marine(-new)?/policy-and-reporting/assessment-by-region(.*)',
263
+ // exact: false,
264
+ // strict: false,
265
+ // },
266
+ // url(payload) {
267
+ // return payload.location.pathname;
268
+ // },
269
+ // },
270
270
  ];
271
271
 
272
272
  config.settings.openExternalLinkInNewTab = true;