From fc51cfd2448ed1d950f384bcbd89d254c29a894f Mon Sep 17 00:00:00 2001 From: barlas <yannisbarlas@gmail.com> Date: Fri, 16 Dec 2016 18:18:09 +0200 Subject: [PATCH] fix: notes are only disabled in read-only mode --- app/components/SimpleEditor/elements/note/NoteTool.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/SimpleEditor/elements/note/NoteTool.js b/app/components/SimpleEditor/elements/note/NoteTool.js index c66a6e4..ab792f1 100644 --- a/app/components/SimpleEditor/elements/note/NoteTool.js +++ b/app/components/SimpleEditor/elements/note/NoteTool.js @@ -1,4 +1,3 @@ -import { isUndefined } from 'lodash' import { AnnotationTool } from 'substance' class NoteTool extends AnnotationTool { @@ -6,7 +5,7 @@ class NoteTool extends AnnotationTool { const el = super.renderButton($$) const readOnly = this.isSurfaceReadOnly() - if (!isUndefined(readOnly)) el.attr('disabled', 'true') + if (readOnly === true) el.attr('disabled', 'true') return el } -- GitLab