Sfoglia il codice sorgente

fix for old space def

Nikolay Suslov 5 anni fa
parent
commit
620db72399
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      public/app.js

+ 2 - 0
public/app.js

@@ -740,6 +740,8 @@ class App {
               if (file.includes('_json') && (typeof source !== 'object')) {
                 source = (typeof JSON.parse(source) == 'object') ? JSON.stringify(JSON.parse(source), null, '\t') : source 
                 //source = source;//JSON.stringify(source, null, '\t');
+              } else if (typeof source == 'object') {
+                  source = JSON.stringify(source, null, '\t')
               }