Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This fixes issue #issue 2651 #2656

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update avatarGrid.html
there was a stray 'e' here .then(avatars => { e document.querySelectorAll(".vignette")
MathioLucas authored Dec 19, 2024
commit 67322ca94fb55e9a10779afa3d722cff52431b10
2 changes: 1 addition & 1 deletion src/avatarGrid.html
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ <h1 style="text-align: center; font-family: Arial, sans-serif;">Dynamic Avatar G
fetch("./avatars.json")
.then(response => response.json())
.then(avatars => {
e

document.querySelectorAll(".vignette").forEach(element => {
const type = element.dataset.type;
const avatarUrl = avatars[type];