mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
hotfix : Datepicker popover coming behind other components in viewer mode (#9965)
* fix : datepicker popover coming behind other components in viewer mode * added viewer check * update zindex * chore version bump
This commit is contained in:
parent
3f407530bd
commit
750b5f53e6
4 changed files with 4 additions and 4 deletions
2
.version
2
.version
|
|
@ -1 +1 @@
|
|||
2.60.2
|
||||
2.60.3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.60.2
|
||||
2.60.3
|
||||
|
|
|
|||
|
|
@ -1054,7 +1054,6 @@ const WidgetWrapper = ({
|
|||
...(isGhostComponent ? { opacity: 0.5 } : {}),
|
||||
...(isWidgetActive ? { zIndex: 3 } : {}),
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
|
|
@ -1070,6 +1069,7 @@ const WidgetWrapper = ({
|
|||
widgetid={id}
|
||||
style={{
|
||||
transform: `translate(332px, -134px)`,
|
||||
zIndex: mode === 'view' && widget.component.component == 'Datepicker' ? 2 : null,
|
||||
...styles,
|
||||
}}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.60.2
|
||||
2.60.3
|
||||
|
|
|
|||
Loading…
Reference in a new issue