diff --git a/packages/forms/frontend/sirius-components-forms/src/propertysections/RichTextPropertySection.tsx b/packages/forms/frontend/sirius-components-forms/src/propertysections/RichTextPropertySection.tsx index 05cf839e8f..95f55da4d0 100644 --- a/packages/forms/frontend/sirius-components-forms/src/propertysections/RichTextPropertySection.tsx +++ b/packages/forms/frontend/sirius-components-forms/src/propertysections/RichTextPropertySection.tsx @@ -158,7 +158,9 @@ export const RichTextPropertySection = ({ const onFocus = () => sendUpdateWidgetFocus(true); const onBlur = (currentText: string) => { sendUpdateWidgetFocus(false); - sendEditedValue(currentText); + if (currentText !== widget.stringValue) { + sendEditedValue(currentText); + } }; return (