@eeacms/volto-clms-theme 1.1.197 → 1.1.199

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,10 @@ 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.199](https://github.com/eea/volto-clms-theme/compare/1.1.198...1.1.199) - 14 November 2024
8
+
9
+ ### [1.1.198](https://github.com/eea/volto-clms-theme/compare/1.1.197...1.1.198) - 13 November 2024
10
+
7
11
  ### [1.1.197](https://github.com/eea/volto-clms-theme/compare/1.1.196...1.1.197) - 11 November 2024
8
12
 
9
13
  ### [1.1.196](https://github.com/eea/volto-clms-theme/compare/1.1.195...1.1.196) - 6 November 2024
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.197",
3
+ "version": "1.1.199",
4
4
  "description": "volto-clms-theme: Volto theme for CLMS site",
5
5
  "main": "src/index.js",
6
6
  "author": "CodeSyntax for the European Environment Agency",
@@ -34,7 +34,7 @@ export const TimeseriesPicker = (props) => {
34
34
  const diffDays = Math.round(Math.abs((start - end) / oneDay));
35
35
  return diffDays < limit;
36
36
  };
37
- const dates_array = data_arrays.map((e) => new Date(e));
37
+ const dates_array = data_arrays?.map((e) => new Date(e));
38
38
  return (
39
39
  <>
40
40
  <Popup
@@ -128,6 +128,7 @@ const UniversalLink = ({
128
128
  title={title}
129
129
  className={className}
130
130
  target={openLinkInNewTab ? '_blank' : undefined}
131
+ rel={openLinkInNewTab ? 'noopener noreferrer' : undefined}
131
132
  {...props}
132
133
  >
133
134
  {children}