couchdb-fauxton icon indicating copy to clipboard operation
couchdb-fauxton copied to clipboard

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

Open skeyby opened this issue 5 years ago • 1 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:

skeyby avatar Jan 08 '19 12:01 skeyby

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

Order ascending:

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

Order descending:

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

popojargo avatar Jul 08 '19 02:07 popojargo