@eeacms/volto-arcgis-block 0.1.417 → 0.1.419

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,13 @@ 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.419](https://github.com/eea/volto-arcgis-block/compare/0.1.418...0.1.419) - 14 January 2026
8
+
9
+ ### [0.1.418](https://github.com/eea/volto-arcgis-block/compare/0.1.417...0.1.418) - 10 December 2025
10
+
11
+ #### :hammer_and_wrench: Others
12
+
13
+ - (task): change the error report instructions message to reflect the widget's new bheavior. [Unai Bolivar - [`f2028db`](https://github.com/eea/volto-arcgis-block/commit/f2028db989e5e2c66e2d67d38f090ae98e9b5402)]
7
14
  ### [0.1.417](https://github.com/eea/volto-arcgis-block/compare/0.1.416...0.1.417) - 9 December 2025
8
15
 
9
16
  #### :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.417",
3
+ "version": "0.1.419",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -167,7 +167,7 @@ class BookmarkWidget extends React.Component {
167
167
  this.props.view.when(() => {
168
168
  this.props.view.ui.add(this.container.current, 'top-right');
169
169
  });
170
- if (this.userID != null) {
170
+ if (this.userID != null && this.props?.isLoggedIn !== false) {
171
171
  this.migrateLegacyBookmarksToUserObject();
172
172
  // this.sessionBookmarks =
173
173
  // JSON.parse(
@@ -86,8 +86,7 @@ class ErrorReport extends React.Component {
86
86
  this.setState({
87
87
  latlong: { x: pt.latitude.toFixed(4), y: pt.longitude.toFixed(4) },
88
88
  datasets: ds,
89
- instructionsText:
90
- "The error report data has been added to your clipboard. Click the 'Service Desk' button and paste the clipboard content inside the Helpdesk's message box",
89
+ instructionsText: `Click on the ‘Service Desk’ button, and the data will be automatically added to the Message field of the technical support service.`,
91
90
  });
92
91
  }.bind(this),
93
92
  );
@@ -1102,6 +1102,7 @@ export const CheckUserID = ({ reference }) => {
1102
1102
  hotspotData={reference.state.hotspotData}
1103
1103
  bookmarkHandler={reference.bookmarkHandler}
1104
1104
  bookmarkData={reference.state.bookmarkData}
1105
+ isLoggedIn={isLoggedIn}
1105
1106
  />
1106
1107
 
1107
1108
  {/* MenuWidget with user_id */}