Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs =================================================================== diff -u -r883c1c27b5590d21a05a293a74206dc45e203cee -r9f1e95f305bbc982a11f7a8917a95bf6caa18544 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs (.../AssessmentSectionCommentView.cs) (revision 883c1c27b5590d21a05a293a74206dc45e203cee) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs (.../AssessmentSectionCommentView.cs) (revision 9f1e95f305bbc982a11f7a8917a95bf6caa18544) @@ -57,7 +57,7 @@ if (data != null) { - richTextEditor.Text = data.Comments; + richTextEditor.Rtf = data.Comments; } } } @@ -75,7 +75,7 @@ private void RichTextEditorOnTextChanged(object sender, EventArgs eventArgs) { - data.Comments = richTextEditor.Text; + data.Comments = richTextEditor.Rtf; } } } \ No newline at end of file