Skip to content

Commit

Permalink
removing faulty link
Browse files Browse the repository at this point in the history
  • Loading branch information
boriscallens committed Jun 15, 2022
1 parent 4c5b1ab commit 7c43181
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/routes/gallery/album.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@
</script>

<script lang="ts">
export let album: PhotoAlbum = undefined;
export let album: PhotoAlbum = {
id: 0,
name: "",
coverUri: "",
slug: "",
itemCount: 0
};
</script>

<a class="gallery-album" href="./gallery/{album.slug}">
<a class="gallery-album" href="./">
<img class="album-cover" src="{album.coverUri}" alt="cover art for {album.name}">
<div class="album-info">
<h3 class="album-name">{album.name}</h3>
Expand Down

0 comments on commit 7c43181

Please sign in to comment.