no JSON.parse needed

This commit is contained in:
rolux 2014-12-17 17:14:09 +00:00
parent e7eb9e8936
commit a9297b778d
1 changed files with 1 additions and 3 deletions

View File

@ -158,9 +158,7 @@ pandora.ui.changelogDialog = function() {
$('<pre>')
.addClass('OxSelectable')
.css({margin: '16px'})
.text(
JSON.stringify(JSON.parse(value.data), null, ' ')
)
.text(JSON.stringify(value.data, null, ' '))
),
height: height - 48,
keys: {enter: 'close', escape: 'close'},