From 1ec35511995941527971475c9e2232a5c615ebb5 Mon Sep 17 00:00:00 2001 From: Tiberiu Ichim Date: Thu, 4 Jan 2024 18:09:43 +0200 Subject: [PATCH] Use _self as target for base tag (#189) --- CHANGELOG.md | 2 ++ package.json | 2 +- src/components/theme/BaseTag.jsx | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39a9c693..ef8cbc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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). +### [1.26.2](https://github.com/eea/volto-eea-website-theme/compare/1.26.1...1.26.2) - 4 January 2024 + ### [1.26.1](https://github.com/eea/volto-eea-website-theme/compare/1.26.0...1.26.1) - 14 December 2023 #### :rocket: New Features diff --git a/package.json b/package.json index f780e02c..a7ef0f27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-eea-website-theme", - "version": "1.26.1", + "version": "1.26.2", "description": "@eeacms/volto-eea-website-theme: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", diff --git a/src/components/theme/BaseTag.jsx b/src/components/theme/BaseTag.jsx index 94087618..c02c92b1 100644 --- a/src/components/theme/BaseTag.jsx +++ b/src/components/theme/BaseTag.jsx @@ -6,6 +6,6 @@ export default function BaseTag(props) { const baseHref = contentId ? flattenToAppURL(contentId) : null; return baseHref !== null ? ( - + ) : null; }