Skip to content

Commit 69d3cdc

Browse files
authored
Merge pull request #179 from kanet77/master
showArraySize should default to false if undefined.
2 parents 2a48154 + 739687c commit 69d3cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/src/json-viewer/jsl-format.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jsl.format = (function () {
4444
options = options || {};
4545
var tabSize = options.tabSize || 2;
4646
var indentCStyle = options.indentCStyle || false;
47-
var showArraySize = (typeof options.showArraySize !== "undefined" ? Boolean(options.showArraySize) : true);
47+
var showArraySize = (typeof options.showArraySize !== "undefined" ? Boolean(options.showArraySize) : false);
4848
var tab = "";
4949
for (var ts = 0; ts < tabSize; ts++) {
5050
tab += " ";

0 commit comments

Comments
 (0)