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')
               }