Skip to content

Commit

Permalink
[albumview] display the disc number only on multiple discs
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Feb 23, 2022
1 parent 491ca46 commit 79c0f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Album/AlbumView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<template v-if="albumDiscs !== null">
<div class="album" v-for="disc in albumDiscs" :key="disc.getId()">
<h3>
<h3 v-if="albumDiscs.length > 1">
{{ $t('album.disc_title', { number: disc.getNumber() }) }}
</h3>
<table>
Expand Down

0 comments on commit 79c0f9e

Please sign in to comment.