ydb-embedded-ui 4.20.3 → 4.20.4

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.20.4](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.3...v4.20.4) (2023-10-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Storage:** set storage true for nodes ([#579](https://github.com/ydb-platform/ydb-embedded-ui/issues/579)) ([146d235](https://github.com/ydb-platform/ydb-embedded-ui/commit/146d23563ef50461260f13eedf66ad7da9f76c8a))
9
+
3
10
  ## [4.20.3](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.2...v4.20.3) (2023-10-25)
4
11
 
5
12
 
@@ -150,7 +150,7 @@ export const getStorageNodesInfo = ({
150
150
  }: Omit<NodesApiRequestParams, 'type'>) => {
151
151
  return createApiRequest({
152
152
  request: window.api.getNodes(
153
- {tenant, visibleEntities, type: 'static', ...params},
153
+ {tenant, visibleEntities, storage: true, type: 'static', ...params},
154
154
  {concurrentId},
155
155
  ),
156
156
  actions: FETCH_STORAGE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "4.20.3",
3
+ "version": "4.20.4",
4
4
  "files": [
5
5
  "dist"
6
6
  ],