mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Table suggestions getting cropped & previewPlacement fix
This commit is contained in:
parent
b9c0de7688
commit
faeb817c99
2 changed files with 2 additions and 2 deletions
|
|
@ -419,7 +419,7 @@ const PreviewContainer = ({
|
||||||
<>
|
<>
|
||||||
{!isPortalOpen && (
|
{!isPortalOpen && (
|
||||||
<Overlay
|
<Overlay
|
||||||
placement="left"
|
placement={previewPlacement || 'left'}
|
||||||
{...(previewRef?.current ? { target: previewRef.current } : {})}
|
{...(previewRef?.current ? { target: previewRef.current } : {})}
|
||||||
show={showPreview}
|
show={showPreview}
|
||||||
rootClose
|
rootClose
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@ class TableComponent extends React.Component {
|
||||||
style={{
|
style={{
|
||||||
width: '280px',
|
width: '280px',
|
||||||
maxHeight: resolveReferences(column.isEditable) ? '100vh' : 'inherit',
|
maxHeight: resolveReferences(column.isEditable) ? '100vh' : 'inherit',
|
||||||
overflowY: 'auto',
|
// overflowY: 'auto',
|
||||||
zIndex: '9999',
|
zIndex: '9999',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue