diff --git a/ui/app/components/json-viewer.js b/ui/app/components/json-viewer.js index e871515c830..2d8442e3303 100644 --- a/ui/app/components/json-viewer.js +++ b/ui/app/components/json-viewer.js @@ -11,7 +11,7 @@ export default Component.extend({ classNames: ['json-viewer'], json: null, - expandDepth: 2, + expandDepth: Infinity, formatter: computed('json', 'expandDepth', function() { return new JSONFormatter(this.get('json'), this.get('expandDepth'), { @@ -30,5 +30,7 @@ export default Component.extend({ }); function embedViewer() { - this.$().empty().append(this.get('formatter').render()); + this.$() + .empty() + .append(this.get('formatter').render()); }