diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx b/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx index b2d853e180f..af58e7ccdb9 100644 --- a/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx +++ b/server/sonar-web/src/main/js/components/docs/DocTooltipLink.tsx @@ -21,9 +21,10 @@ import { forEach } from 'lodash'; import * as React from 'react'; import { Link } from 'react-router'; import DetachIcon from '../../components/icons/DetachIcon'; +import { Dict } from '../../types/types'; interface OwnProps { - customProps?: T.Dict<string>; + customProps?: Dict<string>; } type Props = OwnProps & React.AnchorHTMLAttributes<HTMLAnchorElement>; |