diff --git a/packages/decap-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js b/packages/decap-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js index 82933918e39e..6816588590c6 100644 --- a/packages/decap-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js +++ b/packages/decap-cms-core/src/components/Editor/EditorControlPane/EditorControlPane.js @@ -144,7 +144,7 @@ export default class ControlPane extends React.Component { locale: sourceLocale, isTranslatable: sourceLocale !== defaultLocale, }); - this.props.onChange(field, copyValue, undefined, i18n); + if (copyValue) this.props.onChange(field, copyValue, undefined, i18n); } }); };