summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuelockwood <deathbearbrown@gmail.com>2013-09-05 15:21:43 -0400
committersuelockwood <deathbearbrown@gmail.com>2013-09-05 15:21:43 -0400
commit04716fc7e2c43ff7decf63facd69e07fc9ae476c (patch)
treeacc1cb8230e65c64de6ee5baf96a694ef4620685
parent555c061e3c9882d5618bb7c2f60f7491073ab965 (diff)
downloadcouchdb-04716fc7e2c43ff7decf63facd69e07fc9ae476c.tar.gz
Fixing PrettyPrint issue on _changes
-rw-r--r--src/fauxton/app/templates/documents/changes.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/templates/documents/changes.html b/src/fauxton/app/templates/documents/changes.html
index e528a1c4a..5a2964446 100644
--- a/src/fauxton/app/templates/documents/changes.html
+++ b/src/fauxton/app/templates/documents/changes.html
@@ -29,7 +29,7 @@ the License.
<td> <a href="#<%= database.url('app') %>/<%= change.id %>"><%= change.id %></a> </td>
<% } %>
<td>
- <pre class="prettyprint"> <%= JSON.stringify({changes: change.changes, doc: change.doc}, null, " ") %> </pre>
+ <pre class="prettyprint"> <%- JSON.stringify({changes: change.changes, doc: change.doc}, null, " ") %> </pre>
</td>
<td><%= change.deleted ? "true" : "false" %></td>
</tr>