From 393482315f8adf8e9752cc70f427f0c703f9c2ea Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 20 Mar 2020 14:02:29 +0200 Subject: [PATCH] Fix typo. --- server/richer-editor-setting-helper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/richer-editor-setting-helper.js b/server/richer-editor-setting-helper.js index 4a3d56abc..2f06a5476 100644 --- a/server/richer-editor-setting-helper.js +++ b/server/richer-editor-setting-helper.js @@ -1,10 +1,10 @@ Meteor.startup(() => { - // Disable comment WYSIWYG editor for everyone to fix // Pasting text into a card is adding a line before and after // (and multiplies by pasting more) // https://github.com/wekan/wekan/issues/2890 - Meteor.settings.public.RICHER_CARD_COMMENT_EDITOR = 'false'; + const RCCE = 'false'; + Meteor.settings.public.RICHER_CARD_COMMENT_EDITOR = RCCE; //// Old original code for setting: //const RCCE = process.env.RICHER_CARD_COMMENT_EDITOR;