mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Date-pickers should be displayed on top of other widgets
This commit is contained in:
parent
e494233c1b
commit
17ed92cb4f
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ function getStyles(left, top, isDragging, component) {
|
|||
position: 'absolute',
|
||||
transform,
|
||||
WebkitTransform: transform,
|
||||
zIndex: component.component === 'DropDown' ? 2 : 1,
|
||||
zIndex: ['DropDown', 'Datepicker', 'DaterangePicker'].includes(component.component) ? 2 : 1,
|
||||
// IE fallback: hide the real node using CSS when dragging
|
||||
// because IE will ignore our custom "empty image" drag preview.
|
||||
opacity: isDragging ? 0 : 1,
|
||||
|
|
|
|||
Loading…
Reference in a new issue