diff --git a/admin/src/components/Input/components/Editor.jsx b/admin/src/components/Input/components/Editor.jsx index 22a5de0..af1e85d 100644 --- a/admin/src/components/Input/components/Editor.jsx +++ b/admin/src/components/Input/components/Editor.jsx @@ -58,7 +58,7 @@ export const Editor = ({ name, disabled, presetName, maxLength }) => { editor={ClassicEditor} config={preset.editorConfig} disabled={disabled} - data={value} + data={value ?? ''} onReady={(editor) => { if (preset.editorConfig.WordCountPlugin) { const wordCountPlugin = editor.plugins.get('WordCount');