Skip to content

Commit ed9375e

Browse files
authored
fix(CellWithPopover): text overflow with ellipsis (#2792)
1 parent 7dd8aa6 commit ed9375e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/CellWithPopover/CellWithPopover.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ export function CellWithPopover({
2929
<Popover
3030
openDelay={DELAY_TIMEOUT}
3131
closeDelay={DELAY_TIMEOUT}
32-
className={b('popover', {'full-width': fullWidth}, className)}
32+
className={b('popover', {'full-width': fullWidth})}
3333
{...props}
3434
>
35-
<div className={b('children-wrapper', {'full-width': fullWidth})}>{children}</div>
35+
<div className={b('children-wrapper', {'full-width': fullWidth}, className)}>
36+
{children}
37+
</div>
3638
</Popover>
3739
</div>
3840
);

0 commit comments

Comments
 (0)