feat(front): split playbutton on albumbase
This commit is contained in:
parent
e726c8cb77
commit
2c8dd38a09
|
@ -19,7 +19,6 @@ import AlbumDropdown from './AlbumDropdown.vue'
|
|||
import Layout from '~/components/ui/Layout.vue'
|
||||
import Spacer from '~/components/ui/Spacer.vue'
|
||||
import Loader from '~/components/ui/Loader.vue'
|
||||
import Section from '~/components/ui/Section.vue'
|
||||
import Button from '~/components/ui/Button.vue'
|
||||
|
||||
import useErrorHandler from '~/composables/useErrorHandler'
|
||||
|
@ -219,6 +218,7 @@ const remove = async () => {
|
|||
<Layout flex>
|
||||
<PlayButton
|
||||
class="vibrant"
|
||||
split
|
||||
:tracks="object.tracks"
|
||||
:is-playable="object.is_playable"
|
||||
/>
|
||||
|
@ -233,7 +233,8 @@ const remove = async () => {
|
|||
</Button>
|
||||
<Spacer h grow />
|
||||
<TrackFavoriteIcon v-if="store.state.auth.authenticated" :album="object" />
|
||||
<!-- Button mit Pfeilchen -->
|
||||
<TrackPlaylistIcon v-if="store.state.auth.authenticated" :album="object" />
|
||||
<!-- TODO: Share Button -->
|
||||
<album-dropdown
|
||||
:object="object"
|
||||
:public-libraries="publicLibraries"
|
||||
|
|
Loading…
Reference in New Issue