aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/icons/StatusIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/icons/StatusIcon.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/icons/StatusIcon.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/icons/StatusIcon.tsx b/server/sonar-web/src/main/js/components/icons/StatusIcon.tsx
index 713a92cdcec..f7cb9e352b0 100644
--- a/server/sonar-web/src/main/js/components/icons/StatusIcon.tsx
+++ b/server/sonar-web/src/main/js/components/icons/StatusIcon.tsx
@@ -19,13 +19,14 @@
*/
import * as React from 'react';
import { colors } from '../../app/theme';
+import { Dict } from '../../types/types';
import Icon, { IconProps } from './Icon';
interface Props extends IconProps {
status: string;
}
-const statusIcons: T.Dict<(props: IconProps) => React.ReactElement> = {
+const statusIcons: Dict<(props: IconProps) => React.ReactElement> = {
open: OpenStatusIcon,
confirmed: ConfirmedStatusIcon,
reopened: ReopenedStatusIcon,