aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/issue/IssueView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/issue/IssueView.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/issue/IssueView.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/components/issue/IssueView.tsx b/server/sonar-web/src/main/js/components/issue/IssueView.tsx
index 30b4e9d5ed8..12aa0538fba 100644
--- a/server/sonar-web/src/main/js/components/issue/IssueView.tsx
+++ b/server/sonar-web/src/main/js/components/issue/IssueView.tsx
@@ -23,6 +23,7 @@ import { deleteIssueComment, editIssueComment } from '../../api/issues';
import Checkbox from '../../components/controls/Checkbox';
import { translate } from '../../helpers/l10n';
import { BranchLike } from '../../types/branch-like';
+import { Issue } from '../../types/types';
import { updateIssue } from './actions';
import IssueActionsBar from './components/IssueActionsBar';
import IssueCommentLine from './components/IssueCommentLine';
@@ -34,12 +35,12 @@ interface Props {
currentPopup?: string;
displayLocationsCount?: boolean;
displayLocationsLink?: boolean;
- issue: T.Issue;
+ issue: Issue;
onAssign: (login: string) => void;
- onChange: (issue: T.Issue) => void;
+ onChange: (issue: Issue) => void;
onCheck?: (issue: string) => void;
onClick: (issueKey: string) => void;
- onFilter?: (property: string, issue: T.Issue) => void;
+ onFilter?: (property: string, issue: Issue) => void;
selected: boolean;
togglePopup: (popup: string, show: boolean | void) => void;
}