diff --git a/v1-com-officielle/src/data/peopleData.js b/v1-com-officielle/src/data/peopleData.js
index 38bb91d..9ccf943 100644
--- a/v1-com-officielle/src/data/peopleData.js
+++ b/v1-com-officielle/src/data/peopleData.js
@@ -89,7 +89,14 @@ export async function loadPeopleData() {
for (const user of pData){
const pouet = filtered.find(p => p.account.username === user.name || p.reblog?.account.username === user.name);
if (pouet){
- description[user.name] = pouet.account.note;
+ let descData = pouet.account.note.split('
').filter(e => e);
+ if(descData.length > 0){
+ for (let line of descData){
+ description[user.name] += '\n' + line;
+ }
+ } else {
+ description[user.name] = 'NO DESCRIPTION'
+ }
}
}
diff --git a/v1-com-officielle/src/indieComponents/VideoPannel.vue b/v1-com-officielle/src/indieComponents/VideoPannel.vue
index 65f88cf..7813b65 100644
--- a/v1-com-officielle/src/indieComponents/VideoPannel.vue
+++ b/v1-com-officielle/src/indieComponents/VideoPannel.vue
@@ -21,7 +21,7 @@