Reported in https://github.com/Automattic/jetpack/pull/14692#issuecomment-587919478.
123.123 main street. A search executes for 123 main street.
Unable to type 123.
As mentioned in the original comment, this is happening because qss automatically typecasts Booleans and Numbers. In this case specifically, it's typecasting "1 " as 1 which is then cast into "1" in the Instant Search client.
I opened a PR in the library for toggling typecasting here: lukeed/qss/pull/8.
Most helpful comment
As mentioned in the original comment, this is happening because qss automatically typecasts Booleans and Numbers. In this case specifically, it's typecasting
"1 "as1which is then cast into"1"in the Instant Search client.I opened a PR in the library for toggling typecasting here: lukeed/qss/pull/8.