4 writes to _openPageDialog
Aspire.Dashboard (4)
Components\Layout\MainLayout.razor.cs (4)
189
_openPageDialog
= await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true);
194
_openPageDialog
= null;
229
_openPageDialog
= await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true);
233
_openPageDialog
= await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
6 references to _openPageDialog
Aspire.Dashboard (6)
Components\Layout\MainLayout.razor.cs (6)
179
if (
_openPageDialog
is not null)
181
if (Equals(
_openPageDialog
.Id, HelpDialogId))
186
await
_openPageDialog
.CloseAsync();
214
if (
_openPageDialog
is not null)
216
if (Equals(
_openPageDialog
.Id, SettingsDialogId))
221
await
_openPageDialog
.CloseAsync();