We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a48154 + 739687c commit 69d3cdcCopy full SHA for 69d3cdc
extension/src/json-viewer/jsl-format.js
@@ -44,7 +44,7 @@ jsl.format = (function () {
44
options = options || {};
45
var tabSize = options.tabSize || 2;
46
var indentCStyle = options.indentCStyle || false;
47
- var showArraySize = (typeof options.showArraySize !== "undefined" ? Boolean(options.showArraySize) : true);
+ var showArraySize = (typeof options.showArraySize !== "undefined" ? Boolean(options.showArraySize) : false);
48
var tab = "";
49
for (var ts = 0; ts < tabSize; ts++) {
50
tab += " ";
0 commit comments