summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-03-20 14:02:29 +0200
committerLauri Ojansivu <x@xet7.org>2020-03-20 14:02:29 +0200
commit393482315f8adf8e9752cc70f427f0c703f9c2ea (patch)
tree57afc6ba66780905b1ff6d988256c8b35eefcfee /server
parentcb67af02d7f30aa5f65ac5108eef1ad0b4ea41d3 (diff)
downloadwekan-393482315f8adf8e9752cc70f427f0c703f9c2ea.tar.gz
wekan-393482315f8adf8e9752cc70f427f0c703f9c2ea.tar.bz2
wekan-393482315f8adf8e9752cc70f427f0c703f9c2ea.zip
Fix typo.
Diffstat (limited to 'server')
-rw-r--r--server/richer-editor-setting-helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/richer-editor-setting-helper.js b/server/richer-editor-setting-helper.js
index 4a3d56ab..2f06a547 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;