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);
12 references to _openPageDialog
Aspire.Dashboard (12)
Components\Layout\MainLayout.razor.cs (12)
221
if (
_openPageDialog
is not null)
223
if (Equals(
_openPageDialog
.Id, McpDialogId) && !
_openPageDialog
.Result.IsCompleted)
228
await
_openPageDialog
.CloseAsync();
252
if (
_openPageDialog
is not null)
254
if (Equals(
_openPageDialog
.Id, HelpDialogId) && !
_openPageDialog
.Result.IsCompleted)
259
await
_openPageDialog
.CloseAsync();
287
if (
_openPageDialog
is not null)
289
if (Equals(
_openPageDialog
.Id, SettingsDialogId) && !
_openPageDialog
.Result.IsCompleted)
294
await
_openPageDialog
.CloseAsync();