mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
Fix: Date picker gets hidden inside table and user needs to scroll to see it.
This commit is contained in:
parent
679811ad76
commit
65b2b5d913
2 changed files with 4 additions and 2 deletions
|
|
@ -263,6 +263,9 @@ export const Datepicker = function Datepicker({
|
|||
}
|
||||
setIsDateInputFocussed(false);
|
||||
}}
|
||||
closeOnScroll={(e) => {
|
||||
return e.target.className === 'table-responsive jet-data-table false false';
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1114,10 +1114,9 @@ export const Table = React.memo(
|
|||
<div
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
top: `${items[0]?.start ?? 0}px`,
|
||||
left: 0,
|
||||
width: '100%',
|
||||
transform: `translateY(${items[0]?.start ?? 0}px)`,
|
||||
}}
|
||||
>
|
||||
{items.map((virtualRow) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue