@eeacms/volto-clms-theme 1.1.171 → 1.1.172

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.1.172](https://github.com/eea/volto-clms-theme/compare/1.1.171...1.1.172) - 18 July 2024
8
+
7
9
  ### [1.1.171](https://github.com/eea/volto-clms-theme/compare/1.1.170...1.1.171) - 18 July 2024
8
10
 
9
11
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.171",
3
+ "version": "1.1.172",
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",
@@ -59,9 +59,9 @@ const _ProjectionNaming = ({
59
59
  );
60
60
 
61
61
  const filteredProjections =
62
- item.format === 'Netcdf' ||
63
- item.format.token === 'Netcdf' ||
64
- item.format.title === 'Netcdf'
62
+ item?.format === 'Netcdf' ||
63
+ item?.format?.token === 'Netcdf' ||
64
+ item?.format?.title === 'Netcdf'
65
65
  ? sortedProjections.filter(
66
66
  (p) => utm.includes(p) || newBaseSources.includes(p),
67
67
  )