Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r7618e47c7ff0d09102d56e2c25545f57a4269352 -reef76311cf166ff9bf9f08b3c5ca879307b7f7d7 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 7618e47c7ff0d09102d56e2c25545f57a4269352) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision eef76311cf166ff9bf9f08b3c5ca879307b7f7d7) @@ -1017,7 +1017,7 @@ private static IEnumerable GetCommentableElements(IAssessmentSection assessmentSection) { - yield return assessmentSection; + yield return assessmentSection.Comments; foreach (var commentable in assessmentSection.GetFailureMechanisms().SelectMany(GetCommentableElements)) { yield return commentable; @@ -1046,7 +1046,7 @@ new ReferenceLineContext(nodeData), new FailureMechanismContributionContext(nodeData.FailureMechanismContribution, nodeData), new HydraulicBoundaryDatabaseContext(nodeData), - new CommentContext(nodeData) + new CommentContext(nodeData.Comments) }; IEnumerable failureMechanismContexts = WrapFailureMechanismsInContexts(nodeData);