Updated HTML for tasks.html

chunking
benpturner 2019-02-12 19:29:17 +00:00
parent c5bb41cee6
commit a3f96b3337
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ function SearchCommand() {
// Loop through all table rows, and hide those who don't match the search query
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[3];
td = tr[i].getElementsByTagName("td")[2];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
@ -173,7 +173,7 @@ function SearchOutput() {
// Loop through all table rows, and hide those who don't match the search query
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[4];
td = tr[i].getElementsByTagName("td")[3];
if (td) {
if (td.innerHTML.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";