Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs =================================================================== diff -u -r4006301a5ea5612278919daafc3ee69bb3e072b9 -r4fd4b13639f6d6f3657c02916f60571bf940ee9c --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs (.../ClosingStructuresScenariosView.cs) (revision 4006301a5ea5612278919daafc3ee69bb3e072b9) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresScenariosView.cs (.../ClosingStructuresScenariosView.cs) (revision 4fd4b13639f6d6f3657c02916f60571bf940ee9c) @@ -120,7 +120,7 @@ { scenarioSelectionControl.EndEdit(); - if (failureMechanism?.SectionResults2 == null || data?.Children == null) + if (failureMechanism?.SectionResults == null || data?.Children == null) { scenarioSelectionControl.ClearDataSource(); } @@ -132,7 +132,7 @@ StructuresHelper.CollectCalculationsPerSection(failureMechanism.Sections, calculations.Cast>()); - List scenarioRows = failureMechanism.SectionResults2.Select(sr => new ClosingStructuresScenarioRow(sr)).ToList(); + List scenarioRows = failureMechanism.SectionResults.Select(sr => new ClosingStructuresScenarioRow(sr)).ToList(); scenarioSelectionControl.UpdateDataGridViewDataSource(calculations, scenarioRows, calculationsPerSegment); }