Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 68457f3

Browse files
topcoder-archive/topcoder-platform-u-bahn-app#295 - Fix issue where special chars in a query would not return results
1 parent ac33532 commit 68457f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/es-helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ function buildEsQueryFromFilter (filter) {
717717
* @param {*} char the char to check
718718
*/
719719
function isRegexReserved (char) {
720-
const reserved = '+-=&|!(){}[]^"~*?:\\/'
720+
const reserved = '+-=&|!(){}[]^"~*?:\\/.$'
721721
return reserved.indexOf(char) !== -1
722722
}
723723

0 commit comments

Comments
 (0)