2 writes to IsPruned
Aspire.Dashboard (1)
ServiceClient\DashboardRunStore.cs (1)
456
run.
IsPruned
= true;
Aspire.Dashboard.Components.Tests (1)
Layout\MainLayoutTests.cs (1)
343
historicalRun.
IsPruned
= true;
4 references to IsPruned
Aspire.Dashboard (3)
Components\Controls\DashboardRunSelect.razor.cs (1)
53
.Where(run => !run.
IsPruned
)
ServiceClient\DashboardRunStore.cs (2)
234
return runs.Any(run => run.
IsPruned
|| !run.IsSelectable)
235
? runs.Where(run => !run.
IsPruned
&& run.IsSelectable).ToArray()
Aspire.Dashboard.Tests (1)
Model\DashboardDataSourceTests.cs (1)
658
var prunedRun = Assert.Single(runsBeforePruning, run => run.
IsPruned
);