aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx16
1 files changed, 10 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx
index 98d06cf4c95..0490f09f3ec 100644
--- a/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx
+++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/HotspotReviewHistory.tsx
@@ -19,15 +19,19 @@
*/
import * as classNames from 'classnames';
import * as React from 'react';
-import { Button, DeleteButton, EditButton } from 'sonar-ui-common/components/controls/buttons';
-import Dropdown, { DropdownOverlay } from 'sonar-ui-common/components/controls/Dropdown';
-import Toggler from 'sonar-ui-common/components/controls/Toggler';
-import DateTimeFormatter from 'sonar-ui-common/components/intl/DateTimeFormatter';
-import { PopupPlacement } from 'sonar-ui-common/components/ui/popups';
-import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n';
import IssueChangelogDiff from '../../../components/issue/components/IssueChangelogDiff';
import Avatar from '../../../components/ui/Avatar';
import { sanitizeString } from '../../../helpers/sanitize';
+import {
+ Button,
+ DeleteButton,
+ EditButton
+} from '../../../sonar-ui-common/components/controls/buttons';
+import Dropdown, { DropdownOverlay } from '../../../sonar-ui-common/components/controls/Dropdown';
+import Toggler from '../../../sonar-ui-common/components/controls/Toggler';
+import DateTimeFormatter from '../../../sonar-ui-common/components/intl/DateTimeFormatter';
+import { PopupPlacement } from '../../../sonar-ui-common/components/ui/popups';
+import { translate, translateWithParameters } from '../../../sonar-ui-common/helpers/l10n';
import { Hotspot, ReviewHistoryType } from '../../../types/security-hotspots';
import { getHotspotReviewHistory } from '../utils';
import HotspotCommentPopup from './HotspotCommentPopup';