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
Current Behavior
When I go to https://rxjs.dev/ and use the search field in the top right corner to search for "fromEvent" it's suggesting wrong/incomplete results.
Expected behavior
When typing into the search field I should see smaller and smaller subset of search results probably ending with fromEvent and fromEventPattern.
The text was updated successfully, but these errors were encountered:
I had a quick look at this issue and it seems that keyword generation for the search index is not working correctly.
In your case fromEvent is used in many Examples and somehow the content of the examples are included within the keywords of the document. Searching for click will also return many documents.
I was investigating this a little and there's something wrong with lunr.js I think. When I search for fromeven it searches for "titleWords:*fromeven* fromeven" which should find both fromEvent() and fromEventPattern(). When I try the same query "name:*Shepar* Shepard" at https://olivernn.github.io/moonwalkers/ it works as expected.
Bug Report
Current Behavior
When I go to https://rxjs.dev/ and use the search field in the top right corner to search for "fromEvent" it's suggesting wrong/incomplete results.
Expected behavior
When typing into the search field I should see smaller and smaller subset of search results probably ending with
fromEvent
andfromEventPattern
.The text was updated successfully, but these errors were encountered: