Skip to content

Commit

Permalink
Fixed prices missing thumbnails and not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Nrosa01 committed Jun 7, 2023
1 parent 6c0a8ae commit e661509
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/Prices.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="w-full">
<ul class="flex flex-wrap w-full h-fit">
{#each prices_shaded as i}
<Image bind:image="{i}" />
<Image image="{i}" thumbnail={{...i, src: i.src.replace('gallery\\', 'thumbnails\\')}}/>
{/each}
</ul>
</div>
Expand All @@ -48,7 +48,7 @@
<div class="w-full">
<ul class="flex flex-wrap w-full h-fit">
{#each prices_lined as i}
<Image bind:image="{i}" />
<Image image="{i}" thumbnail={{...i, src: i.src.replace('gallery\\', 'thumbnails\\')}} />
{/each}
</ul>
</div>
Expand Down Expand Up @@ -87,7 +87,7 @@
<div class="w-full">
<ul class="flex flex-wrap w-full h-fit">
{#each prices_posttf as i}
<Image bind:image="{i}" />
<Image image="{i}" thumbnail={{...i, src: i.src.replace('gallery\\', 'thumbnails\\')}}/>
{/each}
</ul>
</div>
Expand Down

0 comments on commit e661509

Please sign in to comment.