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:
Kiran Ashok 2024-06-06 12:00:40 +05:30 committed by GitHub
parent 3f407530bd
commit 750b5f53e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -1 +1 @@
2.60.2
2.60.3

View file

@ -1 +1 @@
2.60.2
2.60.3

View file

@ -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,
}}
>

View file

@ -1 +1 @@
2.60.2
2.60.3