ydb-embedded-ui 1.2.2 → 1.2.3

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
+ ### [1.2.3](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.2.2...v1.2.3) (2022-05-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **node reducer:** should specify concurrentId in getNodeStructure ([103c843](https://www.github.com/ydb-platform/ydb-embedded-ui/commit/103c843524e21af421954444774d68bda540ceae))
9
+
3
10
  ### [1.2.2](https://www.github.com/ydb-platform/ydb-embedded-ui/compare/v1.2.1...v1.2.2) (2022-05-04)
4
11
 
5
12
 
@@ -86,7 +86,7 @@ export const getNodeInfo = (id) => {
86
86
 
87
87
  export const getNodeStructure = (nodeId) => {
88
88
  return createApiRequest({
89
- request: window.api.getStorageInfo({nodeId}),
89
+ request: window.api.getStorageInfo({nodeId}, {concurrentId: 'getNodeStructure'}),
90
90
  actions: FETCH_NODE_STRUCTURE,
91
91
  });
92
92
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "files": [
5
5
  "dist"
6
6
  ],