diff options
author | Anderson Shindy Oki <[email protected]> | 2024-07-09 23:52:55 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-09 23:52:55 +0900 |
commit | ab2925e416f2d297d94c5441b11af3721d9d05f7 (patch) | |
tree | 9cb1b3fb0fdf026429682e68cfa2b0fc9f36dd62 /frontend/src | |
parent | 032e8b812d1b8c96ddb8902ae31803b6827c66f6 (diff) | |
download | bazarr-ab2925e416f2d297d94c5441b11af3721d9d05f7.tar.gz bazarr-ab2925e416f2d297d94c5441b11af3721d9d05f7.zip |
Fixed popover text wrap browser compatibility (#2573)
Diffstat (limited to 'frontend/src')
-rw-r--r-- | frontend/src/components/TextPopover.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/TextPopover.tsx b/frontend/src/components/TextPopover.tsx index 974c0d0c0..03dd58700 100644 --- a/frontend/src/components/TextPopover.tsx +++ b/frontend/src/components/TextPopover.tsx @@ -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> |