@eeacms/volto-arcgis-block 0.1.348 → 0.1.349

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.349](https://github.com/eea/volto-arcgis-block/compare/0.1.348...0.1.349) - 7 April 2025
8
+
7
9
  ### [0.1.348](https://github.com/eea/volto-arcgis-block/compare/0.1.347...0.1.348) - 3 April 2025
8
10
 
9
11
  ### [0.1.347](https://github.com/eea/volto-arcgis-block/compare/0.1.346...0.1.347) - 2 April 2025
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-arcgis-block",
3
- "version": "0.1.348",
3
+ "version": "0.1.349",
4
4
  "description": "volto-arcgis-block: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: CodeSyntax",
@@ -4816,7 +4816,7 @@ class MenuWidget extends React.Component {
4816
4816
  searchText === '' &&
4817
4817
  componentFilter === 'default' &&
4818
4818
  productFilter === 'default' &&
4819
- familyFilter === 'default'
4819
+ (familyFilter === 'default' || familyFilter === '')
4820
4820
  ) {
4821
4821
  this.filtersApplied = false;
4822
4822
  componentFound = true;
@@ -4846,7 +4846,8 @@ class MenuWidget extends React.Component {
4846
4846
  componentFilter ||
4847
4847
  componentFilter === 'default') &&
4848
4848
  (dataset?.FamilyTitle === familyFilter ||
4849
- familyFilter === 'default'))
4849
+ familyFilter === 'default' ||
4850
+ familyFilter === ''))
4850
4851
  ) {
4851
4852
  this.filtersApplied = true;
4852
4853
  componentFound = true;