5 writes to _openPageDialog
Aspire.Dashboard (5)
Components\Layout\MainLayout.razor.cs (5)
231
_openPageDialog
= await DialogService.ShowDialogAsync<McpServerDialog>(parameters).ConfigureAwait(true);
262
_openPageDialog
= await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true);
267
_openPageDialog
= null;
302
_openPageDialog
= await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true);
306
_openPageDialog
= await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
9 references to _openPageDialog
Aspire.Dashboard (9)
Components\Layout\MainLayout.razor.cs (9)
221
if (
_openPageDialog
is not null)
223
if (Equals(
_openPageDialog
.Id, McpDialogId))
228
await
_openPageDialog
.CloseAsync();
252
if (
_openPageDialog
is not null)
254
if (Equals(
_openPageDialog
.Id, HelpDialogId))
259
await
_openPageDialog
.CloseAsync();
287
if (
_openPageDialog
is not null)
289
if (Equals(
_openPageDialog
.Id, SettingsDialogId))
294
await
_openPageDialog
.CloseAsync();