Pārlūkot izejas kodu

fix editor mode

AykutSarac 3 gadi atpakaļ
vecāks
revīzija
3cbdfeb09e
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/containers/JsonEditor/index.tsx

+ 1 - 1
src/containers/JsonEditor/index.tsx

@@ -23,7 +23,6 @@ const aceOptions: IAceOptions = {
   tabSize: 2,
   showPrintMargin: false,
   wrap: true,
-  mode: "json",
 };
 
 const JsonEditor: React.FC = () => {
@@ -94,6 +93,7 @@ const JsonEditor: React.FC = () => {
       <ErrorContainer error={error} setError={setError} />
       <AceEditor
         height="100%"
+        mode="json"
         value={value}
         onChange={setValue}
         theme={editorTheme}