Georg Krause
6 months ago
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
2 changed files with
3 additions and
1 deletions
-
front/src/components/library/AlbumBase.vue
-
front/src/views/library/DetailAlbums.vue
|
|
@ -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 |
|
|
|
|
|
@ -37,7 +37,7 @@ export default { |
|
|
|
AlbumWidget |
|
|
|
}, |
|
|
|
props: { |
|
|
|
object: { type: String, required: true }, |
|
|
|
object: { type: Object, required: true }, |
|
|
|
isOwner: { type: Boolean, required: true } |
|
|
|
} |
|
|
|
} |
|
|
|