From e6ad8aefde42fed1a0b5b0595af8e1cb47c92cf6 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Sat, 3 Jun 2023 12:18:22 +1200 Subject: [PATCH] Lint fix --- shared/naturalcrit/codeEditor/codeEditor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/naturalcrit/codeEditor/codeEditor.jsx b/shared/naturalcrit/codeEditor/codeEditor.jsx index 2b23dcbf4..9a9c39ee9 100644 --- a/shared/naturalcrit/codeEditor/codeEditor.jsx +++ b/shared/naturalcrit/codeEditor/codeEditor.jsx @@ -190,7 +190,7 @@ const CodeEditor = createClass({ indent : function () { const cm = this.codeMirror; - if (cm.somethingSelected()) { + if(cm.somethingSelected()) { cm.execCommand('indentMore'); } else { cm.execCommand('insertSoftTab');