aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/common/BranchStatus.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/common/BranchStatus.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/common/BranchStatus.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/common/BranchStatus.tsx b/server/sonar-web/src/main/js/components/common/BranchStatus.tsx
index 8fc097af87f..e1ede2a2a97 100644
--- a/server/sonar-web/src/main/js/components/common/BranchStatus.tsx
+++ b/server/sonar-web/src/main/js/components/common/BranchStatus.tsx
@@ -26,7 +26,6 @@ import CodeSmellIcon from '../icons-components/CodeSmellIcon';
import HelpTooltip from '../controls/HelpTooltip';
import Tooltip from '../controls/Tooltip';
import VulnerabilityIcon from '../icons-components/VulnerabilityIcon';
-import { BranchLike } from '../../app/types';
import {
getBranchQualityGateColor,
isShortLivingBranch,
@@ -39,7 +38,7 @@ import { formatMeasure } from '../../helpers/measures';
import './BranchStatus.css';
interface Props {
- branchLike: BranchLike;
+ branchLike: T.BranchLike;
concise?: boolean;
helpTooltipClassName?: string;
}