You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
More info:
OS: Windows 10
Browsers: Firefox and Chrome (same situation)
The text was updated successfully, but these errors were encountered:
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 having
id="sponsor-list"
.Chances are the
id
was changed but this line wasn't, causing the bug.More info:
The text was updated successfully, but these errors were encountered: