Skip to content

Commit 426f9b7

Browse files
committed
FIREFLY-523: quick patch to fix regression bug
1 parent 1794d77 commit 426f9b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firefly/js/tables/ui/TableRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export const CellWrapper = React.memo( (props) => {
324324

325325
return (
326326
<div onMouseEnter={checkOverflow}
327-
onMouseLeave={() => setHasActions(false)} style={{display: 'flex'}}>
327+
onMouseLeave={() => setHasActions(false)} style={{display: 'flex', height: '100%'}}>
328328
<div style={{textAlign, lineHeight, ...style}} className='public_fixedDataTableCell_cellContent'>
329329
<CellRenderer {...omit(props, 'Content')} cellInfo={cellInfo}/>
330330
</div>

0 commit comments

Comments
 (0)