summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
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");