ui
ui copied to clipboard
Can't use input inside alert dialog wrapped by dropdown menu
I have component like this.
<DropdownMenu>
<DropdownMenuTrigger>test</DropdownMenuTrigger>
<DropdownMenuContent>
<AlertDialog>
<AlertDialogTrigger>input</AlertDialogTrigger>
<AlertDialogContent>
<Input type="text" />
</AlertDialogContent>
</AlertDialog>
</DropdownMenuContent>
</DropdownMenu>
```
The problem is I can't interact to Input. How can I fix this? Thanks
I encountered a similar issue and was able to resolve it by updating the @radix-ui/react-dropdown-menu package from version 2.0.5 to version 2.0.6.
This issue has been automatically closed because it received no activity for a while. If you think it was closed by accident, please leave a comment. Thank you.