You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2019/01/29 08:49:27 UTC

[couchdb-fauxton] branch master updated: Fix: accents are ignored in docs search box (#1172)

This is an automated email from the ASF dual-hosted git repository.

garren pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git


The following commit(s) were added to refs/heads/master by this push:
     new 0abfeb3  Fix: accents are ignored in docs search box (#1172)
0abfeb3 is described below

commit 0abfeb3af854d59fd98c314d4c12333aa573f97b
Author: Antonio Maranhao <30...@users.noreply.github.com>
AuthorDate: Tue Jan 29 05:49:23 2019 -0300

    Fix: accents are ignored in docs search box (#1172)
---
 app/addons/documents/components/jumptodoc.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/addons/documents/components/jumptodoc.js b/app/addons/documents/components/jumptodoc.js
index 58dc45e..7edbc66 100644
--- a/app/addons/documents/components/jumptodoc.js
+++ b/app/addons/documents/components/jumptodoc.js
@@ -29,6 +29,7 @@ const JumpToDoc = ({database, loadOptions}) => {
         loadOptions={loadOptions}
         clearable={false}
         ignoreCase={false}
+        ignoreAccents={false}
         cache={false}
         onChange={({value: docId}) => {
           const url = FauxtonAPI.urls('document', 'app', app.utils.safeURLName(database.id), app.utils.safeURLName(docId));