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/projects/utils.ts | |
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/projects/utils.ts')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/utils.ts b/server/sonar-web/src/main/js/apps/projects/utils.ts index c31270fc0ee..a59ea6ea7b9 100644 --- a/server/sonar-web/src/main/js/apps/projects/utils.ts +++ b/server/sonar-web/src/main/js/apps/projects/utils.ts @@ -18,12 +18,12 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { invert } from 'lodash'; +import { MetricKey } from '~sonar-aligned/types/metrics'; import { Facet, getScannableProjects, searchProjects } from '../../api/components'; import { getMeasuresForProjects } from '../../api/measures'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { isDiffMetric } from '../../helpers/measures'; import { RequestData } from '../../helpers/request'; -import { MetricKey } from '../../types/metrics'; import { Dict } from '../../types/types'; import { Query, convertToFilter } from './query'; |