Fixed bug where hal+json responses are not rendered properly

This commit is contained in:
Andrew Bastin
2019-09-23 15:54:08 -04:00
parent 6d0c18fce3
commit 51823b1a96

View File

@@ -494,7 +494,7 @@
responseText.innerText = this.response.body;
} else if (responseText && this.response.body != "(waiting to send request)" && this.response.body !=
"Loading..." && this.response.body != "See JavaScript console (F12) for details.") {
responseText.innerText = this.responseType == 'application/json' ? JSON.stringify(this.response.body,
responseText.innerText = this.responseType == 'application/json' || 'application/hal+json' ? JSON.stringify(this.response.body,
null, 2) : this.response.body;
hljs.highlightBlock(document.querySelector("div#response-details-wrapper pre code"));
} else {