зеркало из https://github.com/Azure/API-Portal.git
Fixed double base path in relative router navigation (#48)
This commit is contained in:
Родитель
68178a580e
Коммит
27e74d6201
|
@ -62,6 +62,10 @@ export class RelativePathRouter implements Router {
|
|||
? url.substring(location.origin.length)
|
||||
: url;
|
||||
|
||||
if (url.startsWith(this.basePath + "/")) {
|
||||
url = url.substring(this.basePath.length);
|
||||
}
|
||||
|
||||
const parts = url.split("#");
|
||||
|
||||
const route: Route = {
|
||||
|
|
Загрузка…
Ссылка в новой задаче