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.
1 parent 7e03495 commit 44fef9fCopy full SHA for 44fef9f
1 file changed
src/Tracy/assets/Dumper/dumper.js
@@ -69,7 +69,7 @@
69
70
var build = function(data, repository, collapsed, parentIds) {
71
var type = data === null ? 'null' : typeof data,
72
- collapseCount = typeof collapsed === 'undefined' ? COLLAPSE_COUNT : COLLAPSE_COUNT_TOP;
+ collapseCount = typeof collapsed === 'undefined' ? COLLAPSE_COUNT_TOP : COLLAPSE_COUNT;
73
74
if (type === 'null' || type === 'string' || type === 'number' || type === 'boolean') {
75
data = type === 'string' ? '"' + data + '"' : (data + '').toUpperCase();
0 commit comments