@databiosphere/findable-ui 35.0.1 → 35.0.2

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "35.0.1"
2
+ ".": "35.0.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [35.0.2](https://github.com/DataBiosphere/findable-ui/compare/v35.0.1...v35.0.2) (2025-06-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix explore state entity list type error ([#517](https://github.com/DataBiosphere/findable-ui/issues/517)) ([#518](https://github.com/DataBiosphere/findable-ui/issues/518)) ([bffe1cf](https://github.com/DataBiosphere/findable-ui/commit/bffe1cf876304e848a59353c726da889c1d59f97))
9
+
3
10
  ## [35.0.1](https://github.com/DataBiosphere/findable-ui/compare/v35.0.0...v35.0.1) (2025-06-03)
4
11
 
5
12
 
@@ -142,7 +142,7 @@ function initEntities(entityPageState) {
142
142
  ...acc,
143
143
  [entityPath]: {
144
144
  entityKey: entityPageState[entityPath].categoryGroupConfigKey,
145
- query: {},
145
+ query: { entityListType: entityPath },
146
146
  },
147
147
  };
148
148
  }, {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "35.0.1",
3
+ "version": "35.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -199,7 +199,7 @@ function initEntities(entityPageState: EntityPageStateMapper): EntitiesContext {
199
199
  ...acc,
200
200
  [entityPath]: {
201
201
  entityKey: entityPageState[entityPath].categoryGroupConfigKey,
202
- query: {},
202
+ query: { entityListType: entityPath },
203
203
  },
204
204
  };
205
205
  }, {} as EntitiesContext);