5 writes to _openPageDialog
Aspire.Dashboard (5)
Components\Layout\MainLayout.razor.cs (5)
245_openPageDialog = await DialogService.ShowDialogAsync<McpServerDialog>(parameters).ConfigureAwait(true); 275_openPageDialog = await DialogService.ShowDialogAsync<HelpDialog>(parameters).ConfigureAwait(true); 280_openPageDialog = null; 314_openPageDialog = await DialogService.ShowPanelAsync<SettingsDialog>(parameters).ConfigureAwait(true); 318_openPageDialog = await DialogService.ShowDialogAsync<SettingsDialog>(parameters).ConfigureAwait(true);
12 references to _openPageDialog
Aspire.Dashboard (12)
Components\Layout\MainLayout.razor.cs (12)
235if (_openPageDialog is not null) 237if (Equals(_openPageDialog.Id, McpDialogId) && !_openPageDialog.Result.IsCompleted) 242await _openPageDialog.CloseAsync(); 265if (_openPageDialog is not null) 267if (Equals(_openPageDialog.Id, HelpDialogId) && !_openPageDialog.Result.IsCompleted) 272await _openPageDialog.CloseAsync(); 299if (_openPageDialog is not null) 301if (Equals(_openPageDialog.Id, SettingsDialogId) && !_openPageDialog.Result.IsCompleted) 306await _openPageDialog.CloseAsync();