From 68b0e3ea66a5c8dcfb3d0ff70575bb2bd242db54 Mon Sep 17 00:00:00 2001 From: chris <kokosias@yahoo.gr> Date: Mon, 19 Dec 2016 18:44:50 +0200 Subject: [PATCH] pass trackChanges prop to actual editor --- app/components/SimpleEditor/Editor.js | 4 ++-- app/components/SimpleEditor/SimpleEditor.jsx | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/SimpleEditor/Editor.js b/app/components/SimpleEditor/Editor.js index 0b1a223..739b18f 100644 --- a/app/components/SimpleEditor/Editor.js +++ b/app/components/SimpleEditor/Editor.js @@ -96,13 +96,13 @@ class Editor extends ProseEditor { _renderEditor ($$) { const configurator = this.props.configurator const editing = this.props.disabled ? 'selection' : 'full' - return $$(ContainerEditor, { editing: editing, documentSession: this.documentSession, commands: configurator.getSurfaceCommandNames(), containerId: 'body', - textTypes: configurator.getTextTypes() + textTypes: configurator.getTextTypes(), + trackChanges: this.props.trackChanges }).ref('body') } diff --git a/app/components/SimpleEditor/SimpleEditor.jsx b/app/components/SimpleEditor/SimpleEditor.jsx index b653a5f..4e5a19d 100644 --- a/app/components/SimpleEditor/SimpleEditor.jsx +++ b/app/components/SimpleEditor/SimpleEditor.jsx @@ -88,6 +88,7 @@ export default class SimpleEditor extends React.Component { fragment: this.props.fragment, history: this.props.history, onSave: onSave, + trackChanges: this.props.fragment.trackChanges, updateComments: this.props.updateComments, user: this.props.user }, el) @@ -154,6 +155,7 @@ SimpleEditor.propTypes = { fragment: React.PropTypes.object.isRequired, history: React.PropTypes.object.isRequired, onSave: React.PropTypes.func.isRequired, + trackChanges: React.PropTypes.bool.isRequired, update: React.PropTypes.func.isRequired, updateComments: React.PropTypes.func.isRequired, user: React.PropTypes.object.isRequired -- GitLab