diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-23 14:47:22 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:03 +0200 |
commit | a5599ff112362c822a669d965c6a9fc85d633e37 (patch) | |
tree | 0adf85450226f7c7882f6066fedd8bed2203d720 /server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx | |
parent | 5c472713af0075201739c2e50663eefa01464fd6 (diff) | |
download | sonarqube-a5599ff112362c822a669d965c6a9fc85d633e37.tar.gz sonarqube-a5599ff112362c822a669d965c6a9fc85d633e37.zip |
SONAR-22049 Align branch-like helper
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx b/server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx index d3bfaa0bdad..9fe6fc70bb2 100644 --- a/server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx +++ b/server/sonar-web/src/main/js/apps/overview/pullRequests/BranchQualityGateConditions.tsx @@ -26,7 +26,6 @@ import { isIssueMeasure, propsToIssueParams, } from '../../../components/shared/utils'; -import { getBranchLikeQuery } from '../../../helpers/branch-like'; import { getLocalizedMetricName, translate } from '../../../helpers/l10n'; import { formatMeasure, getShortType, isDiffMetric } from '../../../helpers/measures'; import { @@ -34,6 +33,7 @@ import { getComponentIssuesUrl, getComponentSecurityHotspotsUrl, } from '../../../helpers/urls'; +import { getBranchLikeQuery } from '../../../sonar-aligned/helpers/branch-like'; import { BranchLike } from '../../../types/branch-like'; import { IssueType } from '../../../types/issues'; import { MetricType } from '../../../types/metrics'; |