mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-04-23 15:39:43 +00:00
Merge pull request #2291 from brianjaustin/fix/collection-duration
Hide collection duration if 0
This commit is contained in:
commit
70c213ad22
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@
|
||||||
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">, </span>
|
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">, </span>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue