This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new f1a222d356 fix(cosmetics): allow toast message to be toggled off when 
modal is opened (#32691)
f1a222d356 is described below

commit f1a222d356d8aa3c72a51525651ed3bbdb89642a
Author: Đỗ Trọng Hải <[email protected]>
AuthorDate: Tue Mar 18 00:28:04 2025 +0700

    fix(cosmetics): allow toast message to be toggled off when modal is opened 
(#32691)
    
    Signed-off-by: hainenber <[email protected]>
---
 superset-frontend/src/components/MessageToasts/ToastPresenter.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/MessageToasts/ToastPresenter.tsx 
b/superset-frontend/src/components/MessageToasts/ToastPresenter.tsx
index 59f3d0a6a0..2349955675 100644
--- a/superset-frontend/src/components/MessageToasts/ToastPresenter.tsx
+++ b/superset-frontend/src/components/MessageToasts/ToastPresenter.tsx
@@ -31,7 +31,7 @@ const StyledToastPresenter = styled.div<VisualProps>`
   right: 0px;
   margin-right: 50px;
   margin-bottom: 50px;
-  z-index: ${({ theme }) => theme.zIndex.max};
+  z-index: ${({ theme }) => theme.zIndex.max + 1};
   word-break: break-word;
 
   .toast {

Reply via email to