Merge branch 'master' into ft/3052-extensions

This commit is contained in:
Greg Thompson
2017-11-06 09:18:51 -06:00
15 changed files with 102 additions and 49 deletions

View File

@@ -32,7 +32,8 @@ export default class ResponseBody extends React.Component {
// XML
} else if (/xml/i.test(contentType)) {
body = formatXml(content, {
textNodesOnSameLine: true
textNodesOnSameLine: true,
indentor: " "
})
bodyEl = <HighlightCode value={ body } />