Fix tooltip overflow in checkbox and radio context

This commit is contained in:
Florian Scholdei
2020-07-30 11:02:30 +02:00
parent 02738b816c
commit 132a30f2b6
5 changed files with 136 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ export default class Checkbox extends React.Component<Props> {
renderHelp = () => {
const { title, helpText } = this.props;
if (helpText && !title) {
return <Help message={helpText} />;
return <Help message={helpText} className="has-tooltip-multiline" />;
}
};