summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuelockwood <deathbear@apache.org>2014-01-16 14:12:51 -0500
committersuelockwood <deathbear@apache.org>2014-01-16 14:13:09 -0500
commit0fd6a7ed63836bad36c75c3935e27804be30773c (patch)
treeff6576295554e356054d822128fa168182326945
parent32bb6ce45d42f971c5d772bc1cdb23a1e678509d (diff)
downloadcouchdb-0fd6a7ed63836bad36c75c3935e27804be30773c.tar.gz
Set default reduce to none not _sum
-rw-r--r--src/fauxton/app/addons/documents/views.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/addons/documents/views.js b/src/fauxton/app/addons/documents/views.js
index bde08f88d..ba7e7d79f 100644
--- a/src/fauxton/app/addons/documents/views.js
+++ b/src/fauxton/app/addons/documents/views.js
@@ -1593,7 +1593,7 @@ function(app, FauxtonAPI, Components, Documents, Databases, pouchdb, resizeColum
beforeRender: function () {
if (this.newView) {
- this.reduceFunStr = '_sum';
+ this.reduceFunStr = '';
if (this.ddocs.length === 0) {
this.model = new Documents.Doc(null, {database: this.database});
} else {