diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2023-12-18 19:54:53 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-12-21 20:02:33 +0000 |
commit | 0b33bda44abebe6b4905aecefbbb4cd779a84afc (patch) | |
tree | 62090329d8cb9b4e5cecbe31e05bf12b2c29c9d6 /server | |
parent | 6bde6fc0b9d750cb9ead90e20b72d744adc494b5 (diff) | |
download | sonarqube-0b33bda44abebe6b4905aecefbbb4cd779a84afc.tar.gz sonarqube-0b33bda44abebe6b4905aecefbbb4cd779a84afc.zip |
SONAR-21312 Migrate portfolio definition page to the new UI
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/GlobalContainer.tsx | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx b/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx index da3dd405fb4..0b76ffb1df0 100644 --- a/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx +++ b/server/sonar-web/src/main/js/app/components/GlobalContainer.tsx @@ -39,19 +39,21 @@ import SystemAnnouncement from './SystemAnnouncement'; import UpdateNotification from './update-notification/UpdateNotification'; const TEMP_PAGELIST_WITH_NEW_BACKGROUND = [ - '/dashboard', - '/security_hotspots', - '/component_measures', - '/project/issues', - '/project/activity', + '/admin/extension/governance/views_console', '/code', + '/coding_rules', + '/component_measures', + '/dashboard', '/profiles', + '/project/activity', + '/project/admin/extension/governance/console', '/project/extension/securityreport/securityreport', - '/projects', '/project/information', - '/web_api_v2', + '/project/issues', + '/projects', '/quality_gates', - '/coding_rules', + '/security_hotspots', + '/web_api_v2', ]; const TEMP_PAGELIST_WITH_NEW_BACKGROUND_WHITE = [ |