From dca8354af94e9feb46ea2312857e000aaa232372 Mon Sep 17 00:00:00 2001 From: philippe-perrin-sonarsource Date: Thu, 27 Jan 2022 11:06:59 +0100 Subject: SONAR-15945 Get rid of T namespace in sonar-web --- server/sonar-web/src/main/js/components/icons/IssueIcon.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/sonar-web/src/main/js/components/icons/IssueIcon.tsx') diff --git a/server/sonar-web/src/main/js/components/icons/IssueIcon.tsx b/server/sonar-web/src/main/js/components/icons/IssueIcon.tsx index e78a91bbc44..b3921530bd2 100644 --- a/server/sonar-web/src/main/js/components/icons/IssueIcon.tsx +++ b/server/sonar-web/src/main/js/components/icons/IssueIcon.tsx @@ -18,6 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; +import { IssueType } from '../../types/types'; import BugIcon from './BugIcon'; import CodeSmellIcon from './CodeSmellIcon'; import { IconProps } from './Icon'; @@ -25,7 +26,7 @@ import SecurityHotspotIcon from './SecurityHotspotIcon'; import VulnerabilityIcon from './VulnerabilityIcon'; interface Props extends IconProps { - type: T.IssueType; + type: IssueType; } export default function IssueIcon({ type, ...iconProps }: Props) { -- cgit v1.2.3