Skip to content

Commit

Permalink
made the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewNeufeld committed Dec 3, 2023
1 parent ee805e6 commit 33f44c6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ protected void makeTagChip(String label) {
* @param tagLabel the label that will go on the tag
*/
private void addTag(String tagLabel) {
tagLabel = tagLabel.substring(0, 1).toUpperCase() + tagLabel.substring(1).toLowerCase();
if (!tagList.stream()
.map(Tag::getTagLabel)
.collect(Collectors.toList()).contains(tagLabel)) {
Expand Down

0 comments on commit 33f44c6

Please sign in to comment.