You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by cm...@apache.org on 2008/04/07 22:44:56 UTC

svn commit: r645675 - /incubator/couchdb/trunk/share/www/script/browse.js

Author: cmlenz
Date: Mon Apr  7 13:44:55 2008
New Revision: 645675

URL: http://svn.apache.org/viewvc?rev=645675&view=rev
Log:
Fix for Futon database overview page.

Modified:
    incubator/couchdb/trunk/share/www/script/browse.js

Modified: incubator/couchdb/trunk/share/www/script/browse.js
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/share/www/script/browse.js?rev=645675&r1=645674&r2=645675&view=diff
==============================================================================
--- incubator/couchdb/trunk/share/www/script/browse.js [utf-8] (original)
+++ incubator/couchdb/trunk/share/www/script/browse.js [utf-8] Mon Apr  7 13:44:55 2008
@@ -41,7 +41,7 @@
       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");