diff options
Diffstat (limited to 'rel/overlay/share/www')
-rw-r--r-- | rel/overlay/share/www/script/futon.browse.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rel/overlay/share/www/script/futon.browse.js b/rel/overlay/share/www/script/futon.browse.js index b981feec..47a24110 100644 --- a/rel/overlay/share/www/script/futon.browse.js +++ b/rel/overlay/share/www/script/futon.browse.js @@ -61,7 +61,7 @@ $("#databases tbody.content tr:eq(" + idx + ")") .find("td.size").text($.futon.formatSize(info.disk_size)).end() .find("td.count").text(info.doc_count).end() - .find("td.seq").text(info.update_seq.split("-")[0]); + .find("td.seq").text(String(info.update_seq).split(",")[0]); }, error : function() {} }); |