Skip to content

Commit 604ad50

Browse files
W2WizardFreekBes
authored andcommittedNov 19, 2024·
fix: lazy load leaderboard profile images
·
v1.27.2v1.15.4
1 parent 1afae22 commit 604ad50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎templates/home.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<td class="p-0">
5353
<div class="d-inline-flex flex-row justify-content-start align-items-center text-light">
5454
<a href="/profile/{{ ranking.user.login }}" class="p-2 text-light" style="text-decoration: none;">
55-
<img src="{{ ranking.user.image }}" class="user-picture rounded-circle d-inline-block me-2" height="32" />
55+
<img loading="lazy" src="{{ ranking.user.image }}" class="user-picture rounded-circle d-inline-block me-2" height="32" />
5656
<span>{{ ranking.user.usual_full_name }}</span>
5757
</a>
5858
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.