diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-25 15:32:10 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:04 +0200 |
commit | dade4edf434e12c90e9c39b114047540b5d352b6 (patch) | |
tree | 73d8b018ac2d64310d4bcbebee89dcdf8a3ccb9c /server/sonar-web/src/main/js/apps/component-measures/drilldown | |
parent | 0a731b7621e835a8aef15055a717b95b8203a3e2 (diff) | |
download | sonarqube-dade4edf434e12c90e9c39b114047540b5d352b6.tar.gz sonarqube-dade4edf434e12c90e9c39b114047540b5d352b6.zip |
SONAR-22049 Align ComponentQualifier
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures/drilldown')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/drilldown/ComponentCell.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/drilldown/ComponentCell.tsx b/server/sonar-web/src/main/js/apps/component-measures/drilldown/ComponentCell.tsx index cc4f101da29..fab3b2edecb 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/drilldown/ComponentCell.tsx +++ b/server/sonar-web/src/main/js/apps/component-measures/drilldown/ComponentCell.tsx @@ -20,11 +20,12 @@ import { ContentCell, HoverLink, Note, QualifierIcon } from 'design-system'; import * as React from 'react'; import { To } from 'react-router-dom'; +import { ComponentQualifier } from '~sonar-aligned/types/component'; import { fillBranchLike } from '../../../helpers/branch-like'; import { limitComponentName, splitPath } from '../../../helpers/path'; import { getComponentDrilldownUrlWithSelection, getProjectUrl } from '../../../helpers/urls'; import { BranchLike } from '../../../types/branch-like'; -import { ComponentQualifier, isApplication, isProject } from '../../../types/component'; +import { isApplication, isProject } from '../../../types/component'; import { MeasurePageView } from '../../../types/measures'; import { MetricKey } from '../../../types/metrics'; import { ComponentMeasure, ComponentMeasureEnhanced, Metric } from '../../../types/types'; |