diff --git a/frontend/src/pages/Plateformes.jsx b/frontend/src/pages/Plateformes.jsx index f6dac6e..079cadd 100644 --- a/frontend/src/pages/Plateformes.jsx +++ b/frontend/src/pages/Plateformes.jsx @@ -1517,8 +1517,9 @@ export default function Plateformes() { Projet - Émetteur - Date + Détenteur + Date de souscription + Date cible Montant Capital restant Intérêts ({netMode ? 'Net' : 'Brut'}) @@ -1537,8 +1538,9 @@ export default function Plateformes() { navigate(`/investissements/${r.id}`, { state: { from: { path: location.pathname, search: location.search, label: 'Plateformes' } } })}> {r.nom_projet} - {r.emetteur || '—'} + {(() => { const inv = investisseurs.find(i => i.id === r.investisseur_id); return inv ? memberLabel(inv) : '—'; })()} {fmtDate(r.date_souscription)} + {fmtDate(r.date_cible)} {fmtEUR(r.montant_investi)} {capRestant > 0 ? fmtEUR(capRestant) : } {interets > 0 ? fmtEUR(interets) : }