Compare commits
No commits in common. "b6022a3e901ab9ee23073b75a58e2e70367a1fb0" and "6e2527e5c5686a81dd4a40757980c06642830e93" have entirely different histories.
b6022a3e90
...
6e2527e5c5
|
|
@ -45,12 +45,10 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function albumItems() {
|
function albumItems() {
|
||||||
return this.items
|
return this.items.map(item => ({
|
||||||
.filter(Boolean)
|
...item,
|
||||||
.map(item => ({
|
title: item.comment || (item.credit && `© ${item.credit}`) || (item.entity && `© ${item.entity.name}`),
|
||||||
...item,
|
}));
|
||||||
title: item.comment || (item.credit && `© ${item.credit}`) || (item.entity && `© ${item.entity.name}`),
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<Album
|
<Album
|
||||||
v-if="showAlbum"
|
v-if="showAlbum"
|
||||||
:items="[release.poster, ...release.photos]"
|
:items="release.photos"
|
||||||
:title="release.title"
|
:title="release.title"
|
||||||
@close="$router.go(-1)"
|
@close="$router.go(-1)"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.168.10",
|
"version": "1.168.9",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.168.10",
|
"version": "1.168.9",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue