Skip to content

Commit

Permalink
Merge pull request #32 from DREDGE-Mods/dev
Browse files Browse the repository at this point in the history
Oops typo
  • Loading branch information
xen-42 authored Dec 9, 2023
2 parents e0e7515 + 3aee8d4 commit 628f4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModPreview.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { mod: mod } = Astro.props;
<h5 class="text-center">{mod.name}</h5>
{(mod.thumbnail != undefined && mod.thumbnail != "") &&
<div class="pb-2">
<img class="bg-black bg-opacity-50" style="object-fit: contain" src={"https://raw.githubusercontent.com/DREDGE-Mods/DredgeModDatabase/database/thumbnails/" + mod.first_image} alt={mod.name} width="400" height="200" loading="eager">
<img class="bg-black bg-opacity-50" style="object-fit: contain" src={"https://raw.githubusercontent.com/DREDGE-Mods/DredgeModDatabase/database/thumbnails/" + mod.thumbnail} alt={mod.name} width="400" height="200" loading="eager">
</div>
}
</a>
Expand Down

0 comments on commit 628f4b7

Please sign in to comment.