fix: team email tooltip was not showing

This commit is contained in:
Torkel Ödegaard 2018-07-31 17:31:45 +02:00
parent 276a5e6eb5
commit 89eae1566d

View File

@ -12,7 +12,7 @@ export const Label: SFC<Props> = props => {
<span className="gf-form-label width-10">
<span>{props.children}</span>
{props.tooltip && (
<Tooltip className="gf-form-help-icon--right-normal" placement="auto" content="hello">
<Tooltip className="gf-form-help-icon--right-normal" placement="auto" content={props.tooltip}>
<i className="gicon gicon-question gicon--has-hover" />
</Tooltip>
)}