5 writes to _openPageDialog
Aspire.Dashboard (5)
Components\Layout\MainLayout.razor.cs (5)
244
_openPageDialog
= await DialogService.ShowDialogAsync<McpServerDialog>(parameters).ConfigureAwait(true);
274
_openPageDialog
= await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true);
279
_openPageDialog
= null;
313
_openPageDialog
= await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true);
317
_openPageDialog
= await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
12 references to _openPageDialog
Aspire.Dashboard (12)
Components\Layout\MainLayout.razor.cs (12)
234
if (
_openPageDialog
is not null)
236
if (Equals(
_openPageDialog
.Id, McpDialogId) && !
_openPageDialog
.Result.IsCompleted)
241
await
_openPageDialog
.CloseAsync();
264
if (
_openPageDialog
is not null)
266
if (Equals(
_openPageDialog
.Id, HelpDialogId) && !
_openPageDialog
.Result.IsCompleted)
271
await
_openPageDialog
.CloseAsync();
298
if (
_openPageDialog
is not null)
300
if (Equals(
_openPageDialog
.Id, SettingsDialogId) && !
_openPageDialog
.Result.IsCompleted)
305
await
_openPageDialog
.CloseAsync();