瀏覽代碼

fix for old space def

Nikolay Suslov 5 年之前
父節點
當前提交
620db72399
共有 1 個文件被更改,包括 2 次插入0 次删除
  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')
               }