From dee473a744556aa9e944fa7631fb4efe3eefd487 Mon Sep 17 00:00:00 2001 From: chris <kokosias@yahoo.gr> Date: Thu, 4 May 2017 20:35:32 +0300 Subject: [PATCH] fix --- app/components/SimpleEditor/notesEditor/NotesEditor.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/components/SimpleEditor/notesEditor/NotesEditor.js b/app/components/SimpleEditor/notesEditor/NotesEditor.js index 0e823dc..cfe2492 100644 --- a/app/components/SimpleEditor/notesEditor/NotesEditor.js +++ b/app/components/SimpleEditor/notesEditor/NotesEditor.js @@ -1,6 +1,5 @@ import { - ProseEditor, - Toolbar + ProseEditor } from 'substance' import ContainerEditor from '../ContainerEditor' @@ -46,7 +45,11 @@ class NotesEditor extends ProseEditor { .attr('id', 'notes-editor-content-panel') .ref('notesEditorContentPanel') - el.append(contentPanel) + el.append($$(SplitPane, { sizeA: '100%', splitType: 'horizontal' }) + .append( + contentPanel, + $$('div') + )) return el } -- GitLab