diff --git a/app/scenes/Document/components/Editor.js b/app/scenes/Document/components/Editor.js index 67cb5879..0f9b0219 100644 --- a/app/scenes/Document/components/Editor.js +++ b/app/scenes/Document/components/Editor.js @@ -29,13 +29,15 @@ class DocumentEditor extends React.Component { }; render() { - const { readOnly } = this.props; + const { readOnly, defaultValue } = this.props; return ( (this.editor = ref)} plugins={plugins} + options={{ normalize: !defaultValue }} + defaultValue={defaultValue} {...this.props} /> {