4 writes to _openPageDialog
Aspire.Dashboard (4)
Components\Layout\MainLayout.razor.cs (4)
200
_openPageDialog
= await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true);
205
_openPageDialog
= null;
240
_openPageDialog
= await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true);
244
_openPageDialog
= await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
6 references to _openPageDialog
Aspire.Dashboard (6)
Components\Layout\MainLayout.razor.cs (6)
190
if (
_openPageDialog
is not null)
192
if (Equals(
_openPageDialog
.Id, HelpDialogId))
197
await
_openPageDialog
.CloseAsync();
225
if (
_openPageDialog
is not null)
227
if (Equals(
_openPageDialog
.Id, SettingsDialogId))
232
await
_openPageDialog
.CloseAsync();