When I use an inline MudDialog inside a MudDialog (which is opened with DialogService), the inline dialog is always visible. Also the it is not shown as a dialog, but directly inside the page.
This works on normal components, but not nested in MudDialogs open with DialogService.
<MudDialog IsVisible="false" Options="dialogOptions"><DialogContent><MudGrid> @DialogContent</MudGrid></DialogContent></MudDialog>Is there anything I can do to use inline dialogs inside another dialog?