You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem is with the following code in client.js (and especially the _buildRegExp function):
// only do client side searching if we are on the loading state
// once loaded, we need to send all of them
if(this.getStatus().loading) {
self.searchFields.forEach(function(field) {
var singleQuery = {};
singleQuery[field] = regExp;
selector['$or'].push(singleQuery);
});
} else {
selector = {};
}
If my query is "oeuf" and cached results contain a field value "œuf" (note the œ), when the search will be in "loading" state, "œuf" will disappear, until the search will switch in "loaded" state.
The text was updated successfully, but these errors were encountered:
Problem is with the following code in client.js (and especially the
_buildRegExp
function):If my query is "oeuf" and cached results contain a field value "œuf" (note the œ), when the search will be in "loading" state, "œuf" will disappear, until the search will switch in "loaded" state.
The text was updated successfully, but these errors were encountered: