diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2019-01-02 15:43:44 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-01-07 20:21:00 +0100 |
commit | a9d11467496a6a30955921a24e88d78f1b165a5b (patch) | |
tree | fb3a6119315bbfd92869e6b4cdbdbd534c992370 /server/sonar-web/src/main/js/app/utils | |
parent | b8484b43efee19dc518b4451fe5879d40f33a3dd (diff) | |
download | sonarqube-a9d11467496a6a30955921a24e88d78f1b165a5b.tar.gz sonarqube-a9d11467496a6a30955921a24e88d78f1b165a5b.zip |
drop /component url
Diffstat (limited to 'server/sonar-web/src/main/js/app/utils')
-rw-r--r-- | server/sonar-web/src/main/js/app/utils/startReactApp.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/utils/startReactApp.tsx b/server/sonar-web/src/main/js/app/utils/startReactApp.tsx index 68ae6f8ccb5..781120376f3 100644 --- a/server/sonar-web/src/main/js/app/utils/startReactApp.tsx +++ b/server/sonar-web/src/main/js/app/utils/startReactApp.tsx @@ -34,7 +34,6 @@ import accountRoutes from '../../apps/account/routes'; import backgroundTasksRoutes from '../../apps/background-tasks/routes'; import codeRoutes from '../../apps/code/routes'; import codingRulesRoutes from '../../apps/coding-rules/routes'; -import componentRoutes from '../../apps/component/routes'; import componentMeasuresRoutes from '../../apps/component-measures/routes'; import customMeasuresRoutes from '../../apps/custom-measures/routes'; import groupsRoutes from '../../apps/groups/routes'; @@ -172,7 +171,6 @@ export default function startReactApp( {!isSonarCloud() && ( <RouteWithChildRoutes path="coding_rules" childRoutes={codingRulesRoutes} /> )} - <RouteWithChildRoutes path="component" childRoutes={componentRoutes} /> <RouteWithChildRoutes path="documentation" childRoutes={documentationRoutes} /> <Route path="explore" component={Explore}> <Route path="issues" component={ExploreIssues} /> |