fix index page image loading if masonry grid is enabled

This commit is contained in:
Kentai Radiquum 2025-02-01 03:02:00 +05:00
parent 8110fc3772
commit 87a27f137a
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -34,7 +34,7 @@ function renderImage(endpoint, bucket, prefix, isrc, iid, placeholder) {
placeholder.appendChild(blurImg); placeholder.appendChild(blurImg);
placeholder.appendChild(Img); placeholder.appendChild(Img);
if (view == "masonry") { if (view == "masonry" && ["/images", "/images/", "/images/index.html"].includes(window.location.pathname)) {
container.classList.remove( container.classList.remove(
"xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))]" "xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))]"
); );