diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/data.jade | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/views/data.jade b/views/data.jade index c757498..3d844a3 100644 --- a/views/data.jade +++ b/views/data.jade @@ -349,7 +349,12 @@ block inner_content h1 Formatted Body div(class='row-fluid') div(class='span12') - pre= formattedBody + if typeof rawBody == 'string' + if rawBody.length == 0 + p: i No body + else + pre= JSON.stringify(parsedBody, null, ' ') + | #{parsedBody} if typeof httpResponse != 'undefined' section(id='http-response') |