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
With the default Fuse.js settings in overview.tsx search matches are only considered within 240 characters from the start.
It might be useful to either make the search settings configurable or using "ignoreLocation: true" by default.
To illustrate, consider the following options:
location defaults to 0
distance defaults to 100
threshold defaults to 0.6
With the above options, for something to be considered a match, it would have to be within (threshold) 0.6 x (distance) 100 = 60 characters away from the expected location 0.
With the default Fuse.js settings in overview.tsx search matches are only considered within 240 characters from the start.
It might be useful to either make the search settings configurable or using "ignoreLocation: true" by default.
See also:
https://www.fusejs.io/concepts/scoring-theory.html
https://www.fusejs.io/api/options.html#ignorelocation
The text was updated successfully, but these errors were encountered: