aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src
diff options
context:
space:
mode:
authorAnderson Shindy Oki <[email protected]>2024-07-09 23:52:55 +0900
committerGitHub <[email protected]>2024-07-09 23:52:55 +0900
commitab2925e416f2d297d94c5441b11af3721d9d05f7 (patch)
tree9cb1b3fb0fdf026429682e68cfa2b0fc9f36dd62 /frontend/src
parent032e8b812d1b8c96ddb8902ae31803b6827c66f6 (diff)
downloadbazarr-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.tsx2
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>