From 1bbacc974ba68adc13d67893ffa9db95027ae42d Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Mon, 6 Dec 2021 22:31:25 -0500 Subject: [PATCH] lint --- client/homebrew/editor/editor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/homebrew/editor/editor.jsx b/client/homebrew/editor/editor.jsx index b9e090c39..6f9ce517f 100644 --- a/client/homebrew/editor/editor.jsx +++ b/client/homebrew/editor/editor.jsx @@ -107,7 +107,7 @@ const Editor = createClass({ if(this.state.view === 'text') { const codeMirror = this.refs.codeEditor.codeMirror; - codeMirror.operation(() => { // Batch CodeMirror styling + codeMirror.operation(()=>{ // Batch CodeMirror styling //reset custom text styles const customHighlights = codeMirror.getAllMarks().filter((mark)=>!mark.__isFold); //Don't undo code folding for (let i=customHighlights.length - 1;i>=0;i--) customHighlights[i].clear();