At the bottom of every article on the website, there's the showcased patrons list. A link at the end of the list ('... and 240 more') is supposed to replace the showcased patrons list with the full list, but it currently doesn't do anything.
Potential reason
In the function that handles the click, there's this line:
let patronList = document.querySelector("#patron-list");
... despite the element having id="sponsor-list".
Chances are the id was changed but this line wasn't, causing the bug.
Problem
At the bottom of every article on the website, there's the showcased patrons list. A link at the end of the list ('... and 240 more') is supposed to replace the showcased patrons list with the full list, but it currently doesn't do anything.
Potential reason
In the function that handles the click, there's this line:
let patronList = document.querySelector("#patron-list");
... despite the element havingid="sponsor-list"
. Chances are theid
was changed but this line wasn't, causing the bug.More info: