Fixed popover text wrap browser compatibility (#2573)

This commit is contained in:
Anderson Shindy Oki 2024-07-09 23:52:55 +09:00 committed by GitHub
parent 032e8b812d
commit ab2925e416
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ const TextPopover: FunctionComponent<TextPopoverProps> = ({
opened={hovered}
label={text}
{...tooltip}
style={{ textWrap: "pretty" }}
style={{ textWrap: "wrap" }}
>
<div ref={ref}>{children}</div>
</Tooltip>