-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix case-sensitivity issue with rendering suggested tags.
The `TagEditor` component formerly did not take casing into account in its formatting function for suggested tags. The match should be case-insensitive in the formatter, as it is in the service that does the filtering of tags. This is fixed in two ways: 1. Make substring matching in the formatting function case-insensitive. Render the substring match according to the suggested tag's casing. Fixes this issue specifically. 2. Provide a fallback in the formatter for when the input text does not "seem" to match the suggested `item`. In these cases, just render the suggested tag as-is. This will prevent the formatter from spazzing out if its notion of matching differs from the tag-service's in any future case. Fixes #2547
- Loading branch information
1 parent
478c173
commit 6bd09e7
Showing
2 changed files
with
73 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters