diff options
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r-- | server/sonar-web/src/main/js/app/utils/getHistory.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/app/utils/getHistory.ts b/server/sonar-web/src/main/js/app/utils/getHistory.ts index e23f7c5f756..467dbf00afd 100644 --- a/server/sonar-web/src/main/js/app/utils/getHistory.ts +++ b/server/sonar-web/src/main/js/app/utils/getHistory.ts @@ -25,7 +25,7 @@ let history: History; function ensureHistory() { history = useRouterHistory(createHistory)({ // do not use `getBaseUrl` from `helpers/urls` to no import this file with all its dependecies - basename: (window as any).baseUrl + '/' + basename: (window as any).baseUrl }); return history; } |