Fix album play button

This commit is contained in:
Georg Krause 2021-12-27 10:00:29 +01:00
parent e567abd5fb
commit ce46e4d929
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
2 changed files with 3 additions and 1 deletions

View File

@ -83,6 +83,7 @@
<play-button <play-button
class="vibrant" class="vibrant"
:tracks="object.tracks" :tracks="object.tracks"
:is-playable="object.is_playable"
/> />
<div class="ui hidden horizontal divider" /> <div class="ui hidden horizontal divider" />
<album-dropdown <album-dropdown
@ -170,6 +171,7 @@
<play-button <play-button
class="vibrant" class="vibrant"
:album="object" :album="object"
:is-playable="object.is_playable"
/> />
<div class="ui horizontal hidden divider" /> <div class="ui horizontal hidden divider" />
<album-dropdown <album-dropdown

View File

@ -37,7 +37,7 @@ export default {
AlbumWidget AlbumWidget
}, },
props: { props: {
object: { type: String, required: true }, object: { type: Object, required: true },
isOwner: { type: Boolean, required: true } isOwner: { type: Boolean, required: true }
} }
} }