Auto fix broken rules

This commit is contained in:
Pavel Dohnal
2019-01-23 09:47:58 +01:00
parent 0b062cef09
commit e694438033
62 changed files with 516 additions and 325 deletions

View File

@@ -12,15 +12,17 @@ function Tooltip(props) {
}
if (typeof props.tooltip === 'string') {
tooltip = (<span
style={{
pointerEvents: 'all',
maxWidth: '400px',
display: 'inline-block',
}}
>
{ReactHtmlParser(props.tooltip)}
</span>);
tooltip = (
<span
style={{
pointerEvents: 'all',
maxWidth: '400px',
display: 'inline-block',
}}
>
{ReactHtmlParser(props.tooltip)}
</span>
);
}
return (