Ignis icon indicating copy to clipboard operation
Ignis copied to clipboard

DialogOutlet doesn't work properly

Open ilajosmanov opened this issue 6 months ago • 5 comments

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>

ilajosmanov avatar Aug 22 '24 18:08 ilajosmanov