Skip to content
Snippets Groups Projects
Commit 10480a3a authored by Agate's avatar Agate :speech_balloon:
Browse files

Fix: #1226: Added controls to play volume of an album

parent b8befde2
No related branches found
No related tags found
No related merge requests found
Added controls to play volume of an album (#1226)
\ No newline at end of file
......@@ -9,6 +9,7 @@
<template v-else-if="discs && discs.length > 1">
<div v-for="(tracks, discNumber) in discs" :key="discNumber">
<div class="ui hidden divider"></div>
<play-button class="right floated mini inverted vibrant" :tracks="tracks"></play-button>
<translate
tag="h3"
:translate-params="{number: discNumber + 1}"
......@@ -52,6 +53,7 @@ import ChannelEntries from '@/components/audio/ChannelEntries'
import AlbumEntries from '@/components/audio/AlbumEntries'
import Pagination from "@/components/Pagination"
import PaginationMixin from "@/components/mixins/Pagination"
import PlayButton from "@/components/audio/PlayButton"
export default {
props: ["object", "libraries", "discs", "isSerie", "artist", "page", "paginateBy", "totalTracks"],
......@@ -60,7 +62,8 @@ export default {
AlbumEntries,
ChannelEntries,
TrackTable,
Pagination
Pagination,
PlayButton
},
data() {
return {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment