You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-30 05:29:30 +02:00
chore(web) Update SvelteKit (#1066)
* Update sveltekit * Update sveltekit * Update correct preloading attribute
This commit is contained in:
@ -197,8 +197,12 @@
|
||||
<p class="text-sm pb-4 ">APPEARS IN</p>
|
||||
{/if}
|
||||
{#each albums as album}
|
||||
<a data-sveltekit-prefetch href={`/albums/${album.id}`}>
|
||||
<div class="flex gap-4 py-2 hover:cursor-pointer" on:click={() => dispatch('click', album)}>
|
||||
<a data-sveltekit-preload-data="hover" href={`/albums/${album.id}`}>
|
||||
<div
|
||||
class="flex gap-4 py-2 hover:cursor-pointer"
|
||||
on:click={() => dispatch('click', album)}
|
||||
on:keydown={() => dispatch('click', album)}
|
||||
>
|
||||
<div>
|
||||
<img
|
||||
alt={album.albumName}
|
||||
|
Reference in New Issue
Block a user