Compare commits

..

No commits in common. "b6022a3e901ab9ee23073b75a58e2e70367a1fb0" and "6e2527e5c5686a81dd4a40757980c06642830e93" have entirely different histories.

4 changed files with 7 additions and 9 deletions

View File

@ -45,12 +45,10 @@
<script>
function albumItems() {
return this.items
.filter(Boolean)
.map(item => ({
...item,
title: item.comment || (item.credit && `© ${item.credit}`) || (item.entity && `© ${item.entity.name}`),
}));
return this.items.map(item => ({
...item,
title: item.comment || (item.credit && `© ${item.credit}`) || (item.entity && `© ${item.entity.name}`),
}));
}
export default {

View File

@ -27,7 +27,7 @@
<Album
v-if="showAlbum"
:items="[release.poster, ...release.photos]"
:items="release.photos"
:title="release.title"
@close="$router.go(-1)"
/>

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.168.10",
"version": "1.168.9",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.168.10",
"version": "1.168.9",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {