tooltips: removes tooltips for now

This commit is contained in:
jimmylee 2020-08-15 18:43:42 -07:00
parent 153079a393
commit d10181ce92

View File

@ -35,8 +35,7 @@ export const DescriptionGroup = (props) => {
<div style={{ maxWidth: props.full ? "auto" : "480px", ...props.style }}> <div style={{ maxWidth: props.full ? "auto" : "480px", ...props.style }}>
{!Strings.isEmpty(props.label) ? ( {!Strings.isEmpty(props.label) ? (
<div css={STYLES_DESCRIPTION_GROUP_LABEL}> <div css={STYLES_DESCRIPTION_GROUP_LABEL}>
{props.label}{" "} {props.label} {props.tooltip ? null : null}
{props.tooltip ? <TooltipAnchor tooltip={props.tooltip} height="14px" style={{ paddingTop: 0 }} /> : null}
</div> </div>
) : null} ) : null}
{!Strings.isEmpty(props.description) ? ( {!Strings.isEmpty(props.description) ? (