diff --git a/public/app/core/components/Tooltip/withTooltip.tsx b/public/app/core/components/Tooltip/withTooltip.tsx index 4b9115fad19..a09de67622e 100644 --- a/public/app/core/components/Tooltip/withTooltip.tsx +++ b/public/app/core/components/Tooltip/withTooltip.tsx @@ -4,6 +4,7 @@ import { Manager, Popper, Arrow } from 'react-popper'; interface IwithTooltipProps { placement?: string; content: string | ((props: any) => JSX.Element); + className?: string; } export default function withTooltip(WrappedComponent) { @@ -39,10 +40,10 @@ export default function withTooltip(WrappedComponent) { } render() { - const { content } = this.props; + const { content, className } = this.props; return ( - + {this.state.show ? (