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 component names with spaces are not searchable due to the conversion of space character to "%20" (URL Encoding).
Previously, the name query would get decoded and then searched over the DB. But now this functionality is removed. For ex: search queries like "?name=%40angular%2Fanimations" would be read as "?name=@angular/animations". Now, "%40angular%2Fanimations" is read as "%40angular%2Fanimations" only since decoding of characters is removed.
However, enabling support to decoding characters would affect special characters like "+" which are interpreted as space in Java URL Decoding.
afsahsyeda
changed the title
Url Encoded Component names are not searchable
The component names with spaces are not searchable due to the conversion of space character to "%20" (URL Encoding)
Oct 19, 2023
Description
Component names with space are not searchable via REST API after this PR #2043
The text was updated successfully, but these errors were encountered: