Fixed group button tooltip placement from auto to bottom, fixes #14634

This commit is contained in:
Torkel Ödegaard 2018-12-23 06:46:26 +01:00
parent 8b4083a602
commit 41712c3957

View File

@ -52,7 +52,11 @@ export const ToggleButton: SFC<ToggleButtonProps> = ({
);
if (tooltip) {
return <Tooltip content={tooltip}>{button}</Tooltip>;
return (
<Tooltip content={tooltip} placement="bottom">
{button}
</Tooltip>
);
} else {
return button;
}