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
The current logic in the $addToRecentSearchesFn function of /lib/stores/search.js computes the key for recent searches by converting the word to lowercase and replacing spaces with hyphens. This can be improved by using the normalizeAsUrl utility function exported from lib/utils/index.js to ensure consistency and better handling of special characters.
Proposed Changes:
Update the key computation in $addToRecentSearchesFn from:
The current logic in the
$addToRecentSearchesFn
function of/lib/stores/search.js
computes thekey
for recent searches by converting the word to lowercase and replacing spaces with hyphens. This can be improved by using thenormalizeAsUrl
utility function exported fromlib/utils/index.js
to ensure consistency and better handling of special characters.Proposed Changes:
Update the
key
computation in$addToRecentSearchesFn
from:to:
Related Files:
Additional Information:
The text was updated successfully, but these errors were encountered: