We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dd8aa6 commit ed9375eCopy full SHA for ed9375e
src/components/CellWithPopover/CellWithPopover.tsx
@@ -29,10 +29,12 @@ export function CellWithPopover({
29
<Popover
30
openDelay={DELAY_TIMEOUT}
31
closeDelay={DELAY_TIMEOUT}
32
- className={b('popover', {'full-width': fullWidth}, className)}
+ className={b('popover', {'full-width': fullWidth})}
33
{...props}
34
>
35
- <div className={b('children-wrapper', {'full-width': fullWidth})}>{children}</div>
+ <div className={b('children-wrapper', {'full-width': fullWidth}, className)}>
36
+ {children}
37
+ </div>
38
</Popover>
39
</div>
40
);
0 commit comments