diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2021-08-19 15:03:11 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-08-20 20:03:09 +0000 |
commit | 2d0873e027ff54dbb470c46b76b04f98caa48384 (patch) | |
tree | 38b6704ddd0cfddfca4ef35fbe95caf259b17790 /server/sonar-web/src/main/js/apps/maintenance | |
parent | 6f17541395dcedb52fe54e7755be95f2e5941086 (diff) | |
download | sonarqube-2d0873e027ff54dbb470c46b76b04f98caa48384.tar.gz sonarqube-2d0873e027ff54dbb470c46b76b04f98caa48384.zip |
SONAR-15297 Remove all sonar-ui-common initialization logic
Diffstat (limited to 'server/sonar-web/src/main/js/apps/maintenance')
-rw-r--r-- | server/sonar-web/src/main/js/apps/maintenance/components/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/maintenance/components/App.tsx b/server/sonar-web/src/main/js/apps/maintenance/components/App.tsx index 82b66453860..a676f7e2b5c 100644 --- a/server/sonar-web/src/main/js/apps/maintenance/components/App.tsx +++ b/server/sonar-web/src/main/js/apps/maintenance/components/App.tsx @@ -27,8 +27,8 @@ import { Button } from '../../../components/controls/buttons'; import DateFromNow from '../../../components/intl/DateFromNow'; import TimeFormatter from '../../../components/intl/TimeFormatter'; import { translate } from '../../../helpers/l10n'; -import { isSonarCloud } from '../../../helpers/system'; -import { getBaseUrl, getReturnUrl } from '../../../helpers/urls'; +import { getBaseUrl, isSonarCloud } from '../../../helpers/system'; +import { getReturnUrl } from '../../../helpers/urls'; import '../styles.css'; interface Props { |