@eeacms/volto-tableau 9.0.2 → 9.0.3

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,12 @@ 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
+ ### [9.0.3](https://github.com/eea/volto-tableau/compare/9.0.2...9.0.3) - 4 June 2026
8
+
9
+ #### :bug: Bug Fixes
10
+
11
+ - fix: .@id on null - refs sentry #606685 [Alin Voinea - [`8d2e9cf`](https://github.com/eea/volto-tableau/commit/8d2e9cf896af3c294187f2c661efa5ca50c6fb3c)]
12
+
7
13
  ### [9.0.2](https://github.com/eea/volto-tableau/compare/9.0.1...9.0.2) - 20 May 2026
8
14
 
9
15
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-tableau",
3
- "version": "9.0.2",
3
+ "version": "9.0.3",
4
4
  "description": "@eeacms/volto-tableau: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -188,7 +188,7 @@ export default compose(
188
188
  connect(
189
189
  (state, props) => {
190
190
  const tableau_vis_url = flattenToAppURL(props.data.tableau_vis_url || '');
191
- const pathname = flattenToAppURL(state.content.data['@id']);
191
+ const pathname = flattenToAppURL(state.content.data?.['@id'] || '');
192
192
  return {
193
193
  tableauContent: state.content?.subrequests?.[props.id]?.data,
194
194
  discodata_query: state.discodata_query,