ydb-embedded-ui 4.20.2 → 4.20.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/routes.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.20.3](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.2...v4.20.3) (2023-10-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* 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))
|
9
|
+
|
3
10
|
## [4.20.2](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.20.1...v4.20.2) (2023-10-25)
|
4
11
|
|
5
12
|
|
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,
|
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()
|