From 87a27f137a41566dcf84469a8c1590b375b286ef Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sat, 1 Feb 2025 03:02:00 +0500 Subject: [PATCH] fix index page image loading if masonry grid is enabled --- src/static/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/utils.js b/src/static/utils.js index 93549f4..efdb5fb 100644 --- a/src/static/utils.js +++ b/src/static/utils.js @@ -34,7 +34,7 @@ function renderImage(endpoint, bucket, prefix, isrc, iid, placeholder) { placeholder.appendChild(blurImg); placeholder.appendChild(Img); - if (view == "masonry") { + if (view == "masonry" && ["/images", "/images/", "/images/index.html"].includes(window.location.pathname)) { container.classList.remove( "xl:grid-cols-[repeat(auto-fill,minmax(20%,1fr))]" );