diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/docs/DocTooltip.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/docs/DocTooltip.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx b/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx index 42c421c8e72..bc818f68f69 100644 --- a/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx +++ b/server/sonar-web/src/main/js/components/docs/DocTooltip.tsx @@ -28,7 +28,7 @@ interface Props { children?: React.ReactNode; // Use as `import(/* webpackMode: "eager" */ 'Docs/tooltips/foo/bar.md')` doc: Promise<{ default: string }>; - overlayProps?: { [k: string]: string }; + overlayProps?: T.Dict<string>; } interface State { |