Compare commits
No commits in common. "4b93ae788f7dd53305d9f9aefef5eb20d460d869" and "73141a48025dfc193f72c6051cad5a33e4c549e4" have entirely different histories.
4b93ae788f
...
73141a4802
|
@ -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",
|
||||
|
|
|
@ -77,5 +77,5 @@
|
|||
"postcss-custom-media": "^10.0.2",
|
||||
"postcss-nesting": "^12.0.2"
|
||||
},
|
||||
"version": "0.20.1"
|
||||
"version": "0.20.0"
|
||||
}
|
||||
|
|
|
@ -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),
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue