@eeacms/volto-arcgis-block 0.1.418 → 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,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.419](https://github.com/eea/volto-arcgis-block/compare/0.1.418...0.1.419) - 14 January 2026
|
|
8
|
+
|
|
7
9
|
### [0.1.418](https://github.com/eea/volto-arcgis-block/compare/0.1.417...0.1.418) - 10 December 2025
|
|
8
10
|
|
|
9
11
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -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,7 +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: `
|
|
89
|
+
instructionsText: `Click on the ‘Service Desk’ button, and the data will be automatically added to the Message field of the technical support service.`,
|
|
90
90
|
});
|
|
91
91
|
}.bind(this),
|
|
92
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 */}
|