Skip to content

Commit

Permalink
Fixed a booboo
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanaem committed Dec 13, 2024
1 parent 0356414 commit 1d271f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/annot-categorical.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,13 @@
let matchFound = false;
while (labelIndex < label.length) {
labelIndex++;
if (label[labelIndex].toLowerCase() === searchChar) {
matchFound = true;
break;
}
}
labelIndex++;
if (!matchFound) {
return false;
Expand Down
2 changes: 1 addition & 1 deletion components/category-toolgroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@
let matchFound = false;
while (labelIndex < label.length) {
labelIndex++;
if (label[labelIndex].toLowerCase() === searchChar) {
matchFound = true;
break;
}
}
labelIndex++;
if (!matchFound) {
return false;
Expand Down

0 comments on commit 1d271f8

Please sign in to comment.