Version 1.0.2 - Changement Pointeur Default Thumbnail
All checks were successful
Frontend Deployment / deploy-frontend (push) Successful in 36s

This commit is contained in:
2025-08-29 23:51:52 +02:00
parent f137bd664a
commit a19472c6cc
3 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "chopin-frontend",
"version": "1.0.1",
"version": "1.0.2",
"private": true,
"scripts": {
"dev": "vite --host --port 8080",

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -84,7 +84,7 @@ onMounted(() => {
Object.assign(nativeVideo, props.video);
if(props.video.createdAt) {
props.video.author = 'Ajoutée le ' + new Date(props.video.createdAt).toLocaleString()
props.video.thumbnail = '/src/assets/default_thumbnail.png';
props.video.thumbnail = 'default_thumbnail.png';
nativeVideo.author = userStore.userInfo.identity.username;
}
if(!videoContainer.value) return