Jordan Lewallen
05/20/2022, 5:50 PMnumericFilter
for the search adapter need to account for =
in its RegEx? I think it's missing and can make a PR, but just wanted to check before moving forward (referring to here)Jason Bosco
05/20/2022, 8:53 PM=
for equality, and I thought it used :
for equality for some reason.
This is the updated that Regex that works for all the cases I tested:
(.*?)(<=|>=|>|<|:|=)(.*)
I'd appreciate a PR!Jason Bosco
05/20/2022, 8:54 PM?
in the beginning to get it to work as expected)Jordan Lewallen
05/20/2022, 8:55 PM