From 28eb3655c38c6993fce9589d4ad58bb32961254e Mon Sep 17 00:00:00 2001 From: arne Date: Fri, 21 Nov 2025 09:12:55 +0100 Subject: [PATCH] Fix lazy image loading --- src/computersandblues/lodestone/app.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/computersandblues/lodestone/app.cljs b/src/computersandblues/lodestone/app.cljs index 7128011..b498ee1 100644 --- a/src/computersandblues/lodestone/app.cljs +++ b/src/computersandblues/lodestone/app.cljs @@ -357,7 +357,7 @@ "image" [:img {:src preview-url :srcset (str preview-url ", " remote-url) :alt (:description attachment) - :lazy "lazy"}] + :loading "lazy"}] "video" [:video {:controls true} [:source {:type (str "video/" ext) :src remote-url}] [:a {:href (:remote_url attachment)} (str "Original video at " (:remote_url attachment))]]