diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-24 14:52:52 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:03 +0200 |
commit | cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65 (patch) | |
tree | f4fad82d3127882f1f64e52469eb9faddd8601db /server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx | |
parent | 57b2e33c8c321d3297631de46e1fda374e3b17d8 (diff) | |
download | sonarqube-cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65.tar.gz sonarqube-cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65.zip |
SONAR-22049 Align getComponentIssuesUrl and getComponentSecurityHotspotsUrl
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx b/server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx index 791fbddc4aa..b4aba107c42 100644 --- a/server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx +++ b/server/sonar-web/src/main/js/apps/projectQualityProfiles/ProjectQualityProfilesAppRenderer.tsx @@ -36,12 +36,12 @@ import { import { groupBy, orderBy } from 'lodash'; import * as React from 'react'; import { Helmet } from 'react-helmet-async'; +import HelpTooltip from '~sonar-aligned/components/controls/HelpTooltip'; import { Profile } from '../../api/quality-profiles'; import A11ySkipTarget from '../../components/a11y/A11ySkipTarget'; import Suggestions from '../../components/embed-docs-modal/Suggestions'; import { translate } from '../../helpers/l10n'; import { getRulesUrl } from '../../helpers/urls'; -import HelpTooltip from '../../sonar-aligned/components/controls/HelpTooltip'; import { Component } from '../../types/types'; import BuiltInQualityProfileBadge from '../quality-profiles/components/BuiltInQualityProfileBadge'; import AddLanguageModal from './components/AddLanguageModal'; |