summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorChristopher Lenz <cmlenz@apache.org>2008-04-07 20:44:55 +0000
committerChristopher Lenz <cmlenz@apache.org>2008-04-07 20:44:55 +0000
commit7a09c2f403deed1025da9c4963f3787ac72758e2 (patch)
tree0d5cbc33fd3601cc8fed7b3f7a25c8216de2edd5 /share
parent9c27e4d7db0e2e6a1b458f8545f584fcfaea4ef2 (diff)
Fix for Futon database overview page.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@645675 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-rw-r--r--share/www/script/browse.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/browse.js b/share/www/script/browse.js
index 927f110d..cd9b8bd9 100644
--- a/share/www/script/browse.js
+++ b/share/www/script/browse.js
@@ -41,7 +41,7 @@ function CouchIndexPage() {
var info = new CouchDB(dbName).info();
$("#databases tbody.content").append(
"<tr><th><a href='database.html?" + dbName + "'>" +
- dbName + "</a></th><td class='size'>" + prettyPrintSize(info.size) +
+ dbName + "</a></th><td class='size'>" + prettyPrintSize(info.disk_size) +
"</td><td class='count'>" + info.doc_count +
"</td><td class='seq'>" + info.update_seq + "</td></tr>");
$("#databases tbody tr:odd").addClass("odd");