Compare commits

..

No commits in common. "4b93ae788f7dd53305d9f9aefef5eb20d460d869" and "73141a48025dfc193f72c6051cad5a33e4c549e4" have entirely different histories.

3 changed files with 6 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "traxxx-web",
"version": "0.20.1",
"version": "0.20.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.20.1",
"version": "0.20.0",
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5",

View File

@ -77,5 +77,5 @@
"postcss-custom-media": "^10.0.2",
"postcss-nesting": "^12.0.2"
},
"version": "0.20.1"
"version": "0.20.0"
}

View File

@ -285,6 +285,8 @@ const { scene } = pageProps;
const playing = ref(false);
const paused = ref(false);
console.log(scene);
const poster = computed(() => {
if (scene.poster) {
return getPath(scene.poster, 'thumbnail');
@ -305,7 +307,7 @@ const propProcessors = {
channel: (sceneInfo) => sceneInfo.channel?.name || sceneInfo.network?.name,
network: (sceneInfo) => sceneInfo.network?.name || sceneInfo.channel?.name,
actors: (sceneInfo) => sceneInfo.actors.map((actor) => actor.name),
movie: (sceneInfo) => sceneInfo.movies[0]?.title,
movie: (sceneInfo) => sceneInfo.movies[0].title,
date: (sceneInfo, format) => formatDate(sceneInfo.effectiveDate, format),
};