Compare commits
No commits in common. "b6022a3e901ab9ee23073b75a58e2e70367a1fb0" and "6e2527e5c5686a81dd4a40757980c06642830e93" have entirely different histories.
b6022a3e90
...
6e2527e5c5
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
<Album
|
||||
v-if="showAlbum"
|
||||
:items="[release.poster, ...release.photos]"
|
||||
:items="release.photos"
|
||||
:title="release.title"
|
||||
@close="$router.go(-1)"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.168.10",
|
||||
"version": "1.168.9",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue