forked from DebaucheryLibrarian/traxxx
Showing poster in release album. Filtering empty items from album component.
This commit is contained in:
parent
6e2527e5c5
commit
b6b3def8fa
|
@ -45,7 +45,9 @@
|
|||
|
||||
<script>
|
||||
function albumItems() {
|
||||
return this.items.map(item => ({
|
||||
return this.items
|
||||
.filter(Boolean)
|
||||
.map(item => ({
|
||||
...item,
|
||||
title: item.comment || (item.credit && `© ${item.credit}`) || (item.entity && `© ${item.entity.name}`),
|
||||
}));
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
<Album
|
||||
v-if="showAlbum"
|
||||
:items="release.photos"
|
||||
:items="[release.poster, ...release.photos]"
|
||||
:title="release.title"
|
||||
@close="$router.go(-1)"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue