@eeacms/volto-arcgis-block 0.1.347 → 0.1.348

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,10 +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.348](https://github.com/eea/volto-arcgis-block/compare/0.1.347...0.1.348) - 3 April 2025
8
+
7
9
  ### [0.1.347](https://github.com/eea/volto-arcgis-block/compare/0.1.346...0.1.347) - 2 April 2025
8
10
 
9
11
  #### :hammer_and_wrench: Others
10
12
 
13
+ - Merge pull request #923 from eea/develop [Unai Bolivar - [`8073c9e`](https://github.com/eea/volto-arcgis-block/commit/8073c9efeb07111d95eb0abdfc55738339590cbc)]
11
14
  - CLMS-282464 (feat): package.json second modify [Urkorue - [`1677d0a`](https://github.com/eea/volto-arcgis-block/commit/1677d0ac1577f04578258c4158acb5d2de9bb071)]
12
15
  - CLMS-282464 (feat): package.json modified [Urkorue - [`02fcba4`](https://github.com/eea/volto-arcgis-block/commit/02fcba4787d9cd838cb62acaf37802cf17e92569)]
13
16
  - CLMS-282464 (feat): Family filter added [Urkorue - [`61268f3`](https://github.com/eea/volto-arcgis-block/commit/61268f3bb623260a559401f428f2dff913c84515)]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.347",
3
+ "version": "0.1.348",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -4743,7 +4743,7 @@ class MenuWidget extends React.Component {
4743
4743
  hasFamily = true;
4744
4744
  element.children.forEach((child) => {
4745
4745
  selectedFamily.options.add(
4746
- new Option(child.title, child.title, child.title),
4746
+ new Option(child.title, child.key, child.key),
4747
4747
  );
4748
4748
  });
4749
4749
  }