@eeacms/volto-arcgis-block 0.1.412 → 0.1.413

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
+ ### [0.1.413](https://github.com/eea/volto-arcgis-block/compare/0.1.412...0.1.413) - 27 November 2025
8
+
7
9
  ### [0.1.412](https://github.com/eea/volto-arcgis-block/compare/0.1.411...0.1.412) - 26 November 2025
8
10
 
9
11
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.412",
3
+ "version": "0.1.413",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -193,7 +193,13 @@ class ErrorReport extends React.Component {
193
193
  document.body.removeChild(ta);
194
194
  }
195
195
  } catch {}
196
- window.open(this.helpdeskUrl, '_blank');
196
+ let url = this.helpdeskUrl;
197
+ try {
198
+ let u = new URL(url);
199
+ u.hash = 'error-report';
200
+ url = u.toString();
201
+ } catch {}
202
+ window.open(url, '_blank');
197
203
  }
198
204
 
199
205
  resetData() {