Skip to content

Commit d7b0c25

Browse files
bamurtaughbamurtaugh
and
bamurtaugh
authored
Refactor search functionality in templates.html (#359)
Co-authored-by: bamurtaugh <[email protected]>
1 parent 5d444ec commit d7b0c25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h1 style="margin-left: auto;margin-right: auto;">Available Dev Container Templa
5050
const name = rows[i].getElementsByTagName('td')[0].textContent.toLowerCase();
5151
const maintainer = rows[i].getElementsByTagName('td')[1].textContent.toLowerCase();
5252

53-
if (name.includes(searchValue) || maintainer.includes(searchValue) || repository.includes(searchValue)) {
53+
if (name.includes(searchValue) || maintainer.includes(searchValue)) {
5454
rows[i].style.display = '';
5555
} else {
5656
rows[i].style.display = 'none';

0 commit comments

Comments
 (0)