Ignis
Ignis copied to clipboard
DialogOutlet doesn't work properly
Hi! Thank you so much for this library, very useful!
I've found some issue, when use <Dialog />
component wrapped by Transition
. Dialog appears in the place where it was created but not inside DialogOutlet itself.
Am I doing something wrong?
Code example:
// App.blazor
<DialogOutlet />
// SomeComponent.razor
<Transition>
<Dialog />
</Transition>