ydb-embedded-ui 4.20.2 → 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,19 @@
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
+
10
+ ## [4.20.3](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.2...v4.20.3) (2023-10-25)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * fix port doesnt match ([#576](https://github.com/ydb-platform/ydb-embedded-ui/issues/576)) ([147a2a9](https://github.com/ydb-platform/ydb-embedded-ui/commit/147a2a919c5fe8ec99f19620da70387ab6c0e519))
16
+
3
17
  ## [4.20.2](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.1...v4.20.2) (2023-10-25)
4
18
 
5
19
 
package/dist/routes.ts CHANGED
@@ -27,7 +27,7 @@ export const parseQuery = (location: Location) => {
27
27
 
28
28
  const prepareRoute = (route: string) => {
29
29
  let preparedRoute = route;
30
- const portRegExp = /:\d{3, 5}/g;
30
+ const portRegExp = /:\d{3,5}/g;
31
31
  const portMatch = route.match(portRegExp);
32
32
 
33
33
  // if port exists in route we escape port to avoid errors in function compile()
@@ -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.2",
3
+ "version": "4.20.4",
4
4
  "files": [
5
5
  "dist"
6
6
  ],