diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2019-11-27 22:16:40 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-12-09 20:46:17 +0100 |
commit | 064e1d872f584f4568a12fa0f31e6a4f975a7437 (patch) | |
tree | 2dba1212e3aff2309b4d016c75ae5d9809bf423c /server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx | |
parent | 7197bceddc7c51d51cd46e22b68cdc71d277aa65 (diff) | |
download | sonarqube-064e1d872f584f4568a12fa0f31e6a4f975a7437.tar.gz sonarqube-064e1d872f584f4568a12fa0f31e6a4f975a7437.zip |
SONAR-12679 Drop short & long living branch concept
Diffstat (limited to 'server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx b/server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx index 7b08d04e807..6cd53399386 100644 --- a/server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx +++ b/server/sonar-web/src/main/js/components/shared/DrilldownLink.tsx @@ -19,8 +19,9 @@ */ import * as React from 'react'; import { Link } from 'react-router'; -import { getBranchLikeQuery } from '../../helpers/branches'; +import { getBranchLikeQuery } from '../../helpers/branch-like'; import { getComponentDrilldownUrl, getComponentIssuesUrl } from '../../helpers/urls'; +import { BranchLike } from '../../types/branch-like'; const ISSUE_MEASURES = [ 'violations', @@ -71,7 +72,7 @@ const issueParamsPerMetric: T.Dict<T.Dict<string>> = { }; interface Props { - branchLike?: T.BranchLike; + branchLike?: BranchLike; children?: React.ReactNode; className?: string; component: string; |