This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 980d912cc6b7f41f5c4ddbd30a453f6de5e9d6b2 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]> (cherry picked from commit f1a222d356d8aa3c72a51525651ed3bbdb89642a) --- 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 {
