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
Search query is currently rendering as a Regular Expression, so RegEx reserved characters need to be escaped.
Something like .replace(/[/\-\\^$*+?.()|[\]{}]/g, '\\$&');or such
Maybe implement fancy glob-like wildcards like * and ? in the future, but not today
The text was updated successfully, but these errors were encountered:
Search query is currently rendering as a Regular Expression, so RegEx reserved characters need to be escaped.
Something like
.replace(/[/\-\\^$*+?.()|[\]{}]/g, '\\$&');
or suchMaybe implement fancy glob-like wildcards like
*
and?
in the future, but not todayThe text was updated successfully, but these errors were encountered: