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 6ed8287 commit 6b33c16Copy full SHA for 6b33c16
src/_includes/content/delivery-overview-discards.html
@@ -591,9 +591,9 @@
591
table = document.getElementById("settingsTable");
592
tr = document.getElementsByClassName("settingRow");
593
for (i = 0; i < tr.length; i++) {
594
- samp = tr[i].getElementsByTagName("samp")[0];
595
- if (samp) {
596
- txtValue = samp.textContent || samp.innerText;
+ td = tr[i].getElementsByTagName("td")[0];
+ if (td) {
+ txtValue = td.textContent || td.innerText;
597
if (txtValue.toUpperCase().indexOf(filter) > -1) {
598
tr[i].style.display = "";
599
} else {
0 commit comments