Explorar el Código

fix: team email tooltip was not showing

Torkel Ödegaard hace 7 años
padre
commit
89eae1566d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      public/app/core/components/Forms/Forms.tsx

+ 1 - 1
public/app/core/components/Forms/Forms.tsx

@@ -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>
       )}