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 +7 -0
- package/dist/store/reducers/node.js +1 -1
- package/package.json +1 -1
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
|
};
|