1 write to UI
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
27var options = new DashboardOptions { UI = new UIOptions { DisableImport = disableImport } };
3 references to UI
Aspire.Dashboard (2)
Components\Pages\Resources.razor.cs (1)
238_hideResourceGraph = DashboardOptions.CurrentValue.UI.DisableResourceGraph ?? false;
Model\TelemetryImportService.cs (1)
26public bool IsImportEnabled => _options.CurrentValue.UI.DisableImport != true;
Aspire.Dashboard.Tests (1)
Integration\StartupTests.cs (1)
951Assert.Equal(value, app.DashboardOptionsMonitor.CurrentValue.UI.DisableResourceGraph);