Open Dialog from Dropdown menu. #1436
-
I want to open Dialog from Dropdown Menu. But nothing comes out, does not open. There are no errors. Most likely I'm doing something wrong :) I'm just learning. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
@ensidialabs by default To fix this you need to move https://codesandbox.io/s/dropdownmenu-dialog-nszobq?file=/src/App.js |
Beta Was this translation helpful? Give feedback.
@ensidialabs by default
DropdownMenu.Content
will close whenDropdownMenu.Item
is selected, because you have composedDialog.Content
insideDropdownMenu.Content
it will be immediately unmounted on item selection.To fix this you need to move
Dialog.Content
outside ofDropdownMenu.Content
https://codesandbox.io/s/dropdownmenu-dialog-nszobq?file=/src/App.js