apache / couchdb-fauxton

Fauxton is the new Web UI for CouchDB

Home Page:https://github.com/apache/couchdb-fauxton

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Design Documents is empty when "Additional parameters" -> "Descending" is enabled

skeyby opened this issue · comments

When the additional parametr "Descending" is enabled the Design Documents is empty.

It happens either when you're coming from another page view with Descending enabled or whether you enable it while in the "Design Documents" page.

Expected Behavior

Well, I suppose I should get the design documents in descending order :-)

Current Behavior

You getaAn empty page

Your Environment

  • Version used: Fauxton included in CouchDB 2.3.0
  • Browser Name and version: Safari 12.0.2
  • Operating System and version (desktop or mobile): Desktop
  • Link to your project:

If anyone has time, here's the solution to fix the problem:

Order ascending:

  • startkey="_design"
  • endkey="_design0"

Order descending:

  • startkey="_design0"
  • endkey="_design"