aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/issues/utils.ts
diff options
context:
space:
mode:
authorstanislavh <stanislav.honcharov@sonarsource.com>2023-08-18 11:00:01 +0200
committersonartech <sonartech@sonarsource.com>2023-08-22 20:03:05 +0000
commit4c947ce4e71c1ee79bee02b5b2820f4a5c78e746 (patch)
tree5c81c051cebcd0aaf081c65c710fca38882ddda1 /server/sonar-web/src/main/js/apps/issues/utils.ts
parentc096cbf6f20dcfb5b5cee6405b7d01c5f0b33ade (diff)
downloadsonarqube-4c947ce4e71c1ee79bee02b5b2820f4a5c78e746.tar.gz
sonarqube-4c947ce4e71c1ee79bee02b5b2820f4a5c78e746.zip
SONAR-20197 Add taxonomy types to rules
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues/utils.ts')
-rw-r--r--server/sonar-web/src/main/js/apps/issues/utils.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/utils.ts b/server/sonar-web/src/main/js/apps/issues/utils.ts
index 57b4fd49565..31220895075 100644
--- a/server/sonar-web/src/main/js/apps/issues/utils.ts
+++ b/server/sonar-web/src/main/js/apps/issues/utils.ts
@@ -35,11 +35,10 @@ import { get, save } from '../../helpers/storage';
import { isDefined } from '../../helpers/types';
import {
CleanCodeAttributeCategory,
- Facet,
- RawFacet,
SoftwareImpactSeverity,
SoftwareQuality,
-} from '../../types/issues';
+} from '../../types/clean-code-taxonomy';
+import { Facet, RawFacet } from '../../types/issues';
import { MetricType } from '../../types/metrics';
import { SecurityStandard } from '../../types/security';
import { Dict, Issue, Paging, RawQuery } from '../../types/types';