@eeacms/volto-eea-website-theme 1.26.1 → 1.26.2

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,8 @@ 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.26.2](https://github.com/eea/volto-eea-website-theme/compare/1.26.1...1.26.2) - 4 January 2024
8
+
7
9
  ### [1.26.1](https://github.com/eea/volto-eea-website-theme/compare/1.26.0...1.26.1) - 14 December 2023
8
10
 
9
11
  #### :rocket: New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-eea-website-theme",
3
- "version": "1.26.1",
3
+ "version": "1.26.2",
4
4
  "description": "@eeacms/volto-eea-website-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -6,6 +6,6 @@ export default function BaseTag(props) {
6
6
  const baseHref = contentId ? flattenToAppURL(contentId) : null;
7
7
 
8
8
  return baseHref !== null ? (
9
- <Helmet base={{ target: '_blank', href: `${baseHref}/` }} />
9
+ <Helmet base={{ target: '_self', href: `${baseHref}/` }} />
10
10
  ) : null;
11
11
  }