Use let for video_cards assignment.

This commit is contained in:
voussoir 2021-04-16 16:53:09 -07:00
parent 5cde008138
commit 991bafb46e
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -314,7 +314,7 @@ function filter_video_cards(search_term)
Apply the search filter textbox by hiding the mismatched cards.
*/
let count = 0;
video_cards = document.getElementById("video_cards");
let video_cards = document.getElementById("video_cards");
video_cards.classList.add("hidden");
search_term = search_term.toLocaleLowerCase();
let state_class = "video_card_" + STATE;