summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/webapp/javascripts/libs/handlebarsHelpers/result_display.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/webapp/javascripts/libs/handlebarsHelpers/result_display.js b/src/main/webapp/javascripts/libs/handlebarsHelpers/result_display.js
index fa50a2d..248b750 100644
--- a/src/main/webapp/javascripts/libs/handlebarsHelpers/result_display.js
+++ b/src/main/webapp/javascripts/libs/handlebarsHelpers/result_display.js
@@ -7,7 +7,7 @@ define(["jQuery","Handlebars"], function ($,Handlebars) {
var urlRegexp = /\b((?:https?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?������]))/ig;
if ($.isPlainObject(value))
- return JSON.stringify(value);
+ return JSON.stringify(value, null, 4);
else if (value == null)
return "(null)";
else if (value === false)