Skip to content

Commit

Permalink
fix lazy attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed Dec 5, 2023
1 parent 5ddd4e1 commit 466bf8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/communities/map/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@
popupContainer.innerHTML = `
<div class='text-center space-y-2'>
<img src=${
<img loading='lazy' src=${
community.tags['icon:square']
} alt='avatar' class='w-24 h-24 rounded-full mx-auto' title='Community icon' loading='lazy' onerror="this.src='/images/communities/bitcoin.svg'" />
} alt='avatar' class='w-24 h-24 rounded-full mx-auto' title='Community icon' onerror="this.src='/images/communities/bitcoin.svg'" />
<span class='text-primary dark:text-white font-semibold text-xl' title='Community name'>${
community.tags.name
Expand Down

0 comments on commit 466bf8e

Please sign in to comment.