Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs =================================================================== diff -u -r70aec506a3315dddf252c1c617ec3bac6b995d79 -r8b60c9e846480f3ffeeb263bfea5d3367bf6bee3 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision 70aec506a3315dddf252c1c617ec3bac6b995d79) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision 8b60c9e846480f3ffeeb263bfea5d3367bf6bee3) @@ -376,7 +376,7 @@ return new object[] { new CategoryTreeFolder(RingtoetsCommonFormsResources.FailureMechanism_Inputs_DisplayName, GetInputs(wrappedData, context.Parent), TreeFolderCategory.Input), - new HeightStructuresCalculationGroupContext(wrappedData.CalculationsGroup, wrappedData, context.Parent), + new HeightStructuresCalculationGroupContext(wrappedData.CalculationsGroup, null, wrappedData, context.Parent), new CategoryTreeFolder(RingtoetsCommonFormsResources.FailureMechanism_Outputs_DisplayName, GetOutputs(wrappedData), TreeFolderCategory.Output) }; } @@ -489,12 +489,14 @@ if (calculation != null) { childNodeObjects.Add(new HeightStructuresCalculationContext(calculation, + context.WrappedData, context.FailureMechanism, context.AssessmentSection)); } else if (group != null) { childNodeObjects.Add(new HeightStructuresCalculationGroupContext(group, + context.WrappedData, context.FailureMechanism, context.AssessmentSection)); }