aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx
diff options
context:
space:
mode:
authorViktor Vorona <viktor.vorona@sonarsource.com>2024-04-23 14:47:22 +0200
committerMatteo Mara <matteo.mara@sonarsource.com>2024-04-30 10:59:03 +0200
commita5599ff112362c822a669d965c6a9fc85d633e37 (patch)
tree0adf85450226f7c7882f6066fedd8bed2203d720 /server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx
parent5c472713af0075201739c2e50663eefa01464fd6 (diff)
downloadsonarqube-a5599ff112362c822a669d965c6a9fc85d633e37.tar.gz
sonarqube-a5599ff112362c822a669d965c6a9fc85d633e37.zip
SONAR-22049 Align branch-like helper
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx b/server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx
index 476221616e7..f773f5abc5d 100644
--- a/server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx
+++ b/server/sonar-web/src/main/js/apps/overview/pullRequests/PullRequestOverview.tsx
@@ -20,12 +20,12 @@
import { BasicSeparator, CenteredLayout, PageContentFontWrapper, Spinner } from 'design-system';
import { uniq } from 'lodash';
import * as React from 'react';
-import { getBranchLikeQuery } from '../../../helpers/branch-like';
import { enhanceConditionWithMeasure, enhanceMeasuresWithMetrics } from '../../../helpers/measures';
import { isDefined } from '../../../helpers/types';
import { useBranchStatusQuery } from '../../../queries/branch';
import { useComponentMeasuresWithMetricsQuery } from '../../../queries/component';
import { useComponentQualityGateQuery } from '../../../queries/quality-gates';
+import { getBranchLikeQuery } from '../../../sonar-aligned/helpers/branch-like';
import { PullRequest } from '../../../types/branch-like';
import { Component } from '../../../types/types';
import { AnalysisStatus } from '../components/AnalysisStatus';