Jelajahi Sumber

fix for old space def

Nikolay Suslov 5 tahun lalu
induk
melakukan
620db72399
1 mengubah file dengan 2 tambahan dan 0 penghapusan
  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')
               }