Skip to content

Commit

Permalink
[albumcover] Stop event propagation on artist-link click
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Feb 23, 2022
1 parent e7c6f15 commit b248e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Album/Lib/AlbumListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<router-link :to="'/album/' + album.getId()">{{ album.getName() }}</router-link>
</div>
<div class="album_artist">
{{ $t("shared.by_artist") }} <router-link :to="'/artist/' + album.getArtistId()">{{ album.getArtistName() }}</router-link>
{{ $t("shared.by_artist") }} <router-link @click.stop :to="'/artist/' + album.getArtistId()">{{ album.getArtistName() }}</router-link>
</div>
</div>
</div>
Expand Down

0 comments on commit b248e24

Please sign in to comment.