Skip to content

Commit

Permalink
Merge pull request #2291 from brianjaustin/fix/collection-duration
Browse files Browse the repository at this point in the history
Hide collection duration if 0
  • Loading branch information
advplyr authored Nov 6, 2023
2 parents 5ce1cda + aad6402 commit 70c213a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/tables/collection/BookTableRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">,&nbsp;</span>
</template>
</div>
<p class="text-xs md:text-sm text-gray-400">{{ bookDuration }}</p>
<p v-if="media.duration" class="text-xs md:text-sm text-gray-400">{{ bookDuration }}</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 70c213a

Please sign in to comment.