aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/issues.ts
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2022-03-08 16:59:11 +0100
committersonartech <sonartech@sonarsource.com>2022-03-14 20:03:08 +0000
commit15e088d040984e033a74877b5e42babeb365ded9 (patch)
tree0eb06082e2e46e627ae5de1065e1b35f34d9b8c3 /server/sonar-web/src/main/js/helpers/issues.ts
parent80bdd0543ac958ae1a6684c638ee569cfd3d2721 (diff)
downloadsonarqube-15e088d040984e033a74877b5e42babeb365ded9.tar.gz
sonarqube-15e088d040984e033a74877b5e42babeb365ded9.zip
SONAR-15913 Extract users from redux
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/issues.ts')
-rw-r--r--server/sonar-web/src/main/js/helpers/issues.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/issues.ts b/server/sonar-web/src/main/js/helpers/issues.ts
index 322de67f388..8cbf77dfcaa 100644
--- a/server/sonar-web/src/main/js/helpers/issues.ts
+++ b/server/sonar-web/src/main/js/helpers/issues.ts
@@ -24,7 +24,8 @@ import SecurityHotspotIcon from '../components/icons/SecurityHotspotIcon';
import VulnerabilityIcon from '../components/icons/VulnerabilityIcon';
import { IssueType, RawIssue } from '../types/issues';
import { MetricKey } from '../types/metrics';
-import { Dict, FlowLocation, Issue, TextRange, UserBase } from '../types/types';
+import { Dict, FlowLocation, Issue, TextRange } from '../types/types';
+import { UserBase } from '../types/users';
import { ISSUE_TYPES } from './constants';
interface Rule {}