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

00A0 displayed in red in Fauxton interface

DarrenCook opened this issue · comments

Expected Behavior

The \u00A0 character should just appear as a space. (it is the unicode equivalent of  )

Current Behavior

It shows as a white dot in a red square, in the Fauxton interface, when I click a document to view/edit it.

Possible Solution

A workaround:

I'm using node.js and the nano library, and if I use s.replace(/\u00A0/g, ' ') before doing db.insert(s, 'mydoc') then the problem goes away. But I'd rather not have to modify the data in this way. (A user might have used non-breaking space deliberately.)

Context

It is only distracting. The \u00A0 appears to be stored correctly.

Your Environment

Fauxton on Apache CouchDB v. 2.3.1

(On Linux, viewing with Firefox 68)

This is an Ace editor issue. This should be properly rendered and it's working on other editors. I'm looking forward fixing it.

ajaxorg/ace#4271