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 057f204 commit ccc44e2Copy full SHA for ccc44e2
ide/main/src/content/health/health-service.js
@@ -230,8 +230,8 @@ HealthService.prototype.getData = function() {
230
/**
231
* Return the collected data
232
*/
233
-HealthService.prototype.getJSON = function() {
234
- return JSON.stringify(this.getData());
+HealthService.prototype.getJSON = function(pretty) {
+ return JSON.stringify(this.getData(), null, 2);
235
};
236
237
0 commit comments