We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f113b4 commit 51bf128Copy full SHA for 51bf128
force-app/main/default/staticresources/OrgCheck_OrgCheck_SR.resource
@@ -1378,9 +1378,10 @@ const OrgCheck = {
1378
nbVisible++;
1379
} else {
1380
let hidden = true;
1381
+ const lowerCaseSearchValue = searchValue.toLowerCase();
1382
for (let i=0; i<tr.children.length; i++) {
- const v = tr.children[i].innerText;
1383
- if (v && v.includes && v.includes(searchValue)) {
+ const v = tr.children[i].innerText?.toLowerCase();
1384
+ if (v && v.includes && v.includes(lowerCaseSearchValue)) {
1385
hidden = false;
1386
1387
break;
0 commit comments