From ac6a3b73971bc4ebe8088c3f6ead80ebd4154d1f Mon Sep 17 00:00:00 2001 From: Ali Date: Sat, 2 Sep 2023 16:55:15 -0400 Subject: [PATCH] Issue 29997 - Add potential fix - Look up how to make a PR - Trigger pipeline to verify fix - Check if pipeline can be run locally --- docs/data/material/components/drawers/PersistentDrawerRight.js | 1 + docs/data/material/components/drawers/PersistentDrawerRight.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/data/material/components/drawers/PersistentDrawerRight.js b/docs/data/material/components/drawers/PersistentDrawerRight.js index 245fa63fc829d6..fd1c285f72bcfd 100644 --- a/docs/data/material/components/drawers/PersistentDrawerRight.js +++ b/docs/data/material/components/drawers/PersistentDrawerRight.js @@ -131,6 +131,7 @@ export default function PersistentDrawerRight() { sx={{ width: drawerWidth, flexShrink: 0, + zIndex: !open ? -10 : null, '& .MuiDrawer-paper': { width: drawerWidth, }, diff --git a/docs/data/material/components/drawers/PersistentDrawerRight.tsx b/docs/data/material/components/drawers/PersistentDrawerRight.tsx index f4f300d84f03cd..3f6dcf8212dd42 100644 --- a/docs/data/material/components/drawers/PersistentDrawerRight.tsx +++ b/docs/data/material/components/drawers/PersistentDrawerRight.tsx @@ -135,6 +135,7 @@ export default function PersistentDrawerRight() { sx={{ width: drawerWidth, flexShrink: 0, + zIndex: !open ? -10 : null, '& .MuiDrawer-paper': { width: drawerWidth, },