diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-25 16:15:10 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:04 +0200 |
commit | 3ed9a8fb882a5f69cfac321007139916f687cdf0 (patch) | |
tree | 997be95eb2e66af8a29223bf7daa3e7c06ad4a05 /server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx | |
parent | dade4edf434e12c90e9c39b114047540b5d352b6 (diff) | |
download | sonarqube-3ed9a8fb882a5f69cfac321007139916f687cdf0.tar.gz sonarqube-3ed9a8fb882a5f69cfac321007139916f687cdf0.zip |
SONAR-22049 Align MetricKey, MetricType
Diffstat (limited to 'server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx b/server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx index 053293a9a59..a3ec7989032 100644 --- a/server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx +++ b/server/sonar-web/src/main/js/apps/overview/branches/BranchMetaTopBar.tsx @@ -21,12 +21,12 @@ import { SeparatorCircleIcon } from 'design-system'; import React from 'react'; import { useIntl } from 'react-intl'; import { formatMeasure } from '~sonar-aligned/helpers/measures'; +import { MetricKey, MetricType } from '~sonar-aligned/types/metrics'; import { getCurrentPage } from '../../../app/components/nav/component/utils'; import ComponentReportActions from '../../../components/controls/ComponentReportActions'; import HomePageSelect from '../../../components/controls/HomePageSelect'; import { findMeasure } from '../../../helpers/measures'; import { Branch } from '../../../types/branch-like'; -import { MetricKey, MetricType } from '../../../types/metrics'; import { Component, MeasureEnhanced } from '../../../types/types'; import { HomePage } from '../../../types/users'; |