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

View File

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