Skip to content

Commit f8a4002

Browse files
committedJan 4, 2024
Fix Folder options on Mobile, #321
1 parent 38a3eee commit f8a4002

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/apps/chat/components/applayout/folder/FolderListItem.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ export const FolderListItem: React.FC<RenderItemProps> = ({ folder, provided, sn
200200
{!!menuAnchorEl && (
201201
<CloseableMenu
202202
open anchorEl={menuAnchorEl} onClose={handleMenuClose}
203-
placement='top' sx={{ minWidth: 200 }}
203+
placement='top' zIndex={1301 /* need to be on top of the Modal on Mobile */}
204+
sx={{ minWidth: 200 }}
204205
>
205206

206207
<MenuItem

0 commit comments

Comments
 (0)
Please sign in to comment.