Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionResultRow.cs =================================================================== diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r0aacf2dc29138c69f365fe26a143d4e83b172dbe --- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionResultRow.cs (.../FailureMechanismSectionResultRow.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/FailureMechanismSectionResultRow.cs (.../FailureMechanismSectionResultRow.cs) (revision 0aacf2dc29138c69f365fe26a143d4e83b172dbe) @@ -80,15 +80,15 @@ /// Gets or sets the value representing the result of the layer 3 assessment. /// [TypeConverter(typeof(NoValueRoundedDoubleConverter))] - public RoundedDouble AssessmentLayerThree + public virtual RoundedDouble AssessmentLayerThree { get { return SectionResult.AssessmentLayerThree; } set { - SectionResult.AssessmentLayerThree = value; + SectionResult.AssessmentLayerThree = value.ToPrecision(SectionResult.AssessmentLayerThree.NumberOfDecimalPlaces); } }