diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2020-08-12 09:59:44 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-08-26 20:06:43 +0000 |
commit | c39ab47130cf79261312b7b08afbcb2c79441f9c (patch) | |
tree | 5c72189db1b5e30a004184d9a7858238f606053c /server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx | |
parent | c1f7a7e59d34b1f5b961841ee1004739fcfa7a0f (diff) | |
download | sonarqube-c39ab47130cf79261312b7b08afbcb2c79441f9c.tar.gz sonarqube-c39ab47130cf79261312b7b08afbcb2c79441f9c.zip |
SONAR-12749 DRYer SourceViewerHeader
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx b/server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx index 0dddf9776bb..977153b70ae 100644 --- a/server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx +++ b/server/sonar-web/src/main/js/apps/overview/branches/MeasuresPanel.tsx @@ -27,9 +27,10 @@ import { findMeasure } from '../../../helpers/measures'; import { ApplicationPeriod } from '../../../types/application'; import { BranchLike } from '../../../types/branch-like'; import { ComponentQualifier } from '../../../types/component'; +import { IssueType } from '../../../types/issues'; import { MetricKey } from '../../../types/metrics'; import MeasurementLabel from '../components/MeasurementLabel'; -import { IssueType, MeasurementType } from '../utils'; +import { MeasurementType } from '../utils'; import { DrilldownMeasureValue } from './DrilldownMeasureValue'; import { LeakPeriodInfo } from './LeakPeriodInfo'; import MeasuresPanelIssueMeasureRow from './MeasuresPanelIssueMeasureRow'; |