fix(dev): Pretty print deltas

This commit is contained in:
Juan Tejada 2016-09-28 16:51:50 -07:00
parent b14d52b482
commit b23c55d5b4
2 changed files with 2 additions and 1 deletions

View file

@ -13,7 +13,7 @@ class DeveloperBarLongPollItem extends React.Component
render: =>
if @state.expanded
payload = JSON.stringify(@props.item)
payload = JSON.stringify(@props.item, null, 2)
else
payload = []

View file

@ -170,6 +170,7 @@
}
.payload {
white-space: pre;
color: burlywood;
}
}