feat(me): add password rest button

This commit is contained in:
2025-02-08 19:09:10 +01:00
parent e3fd3878b2
commit 0769e5ae9d
2 changed files with 10 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ public class MeData {
this.lname = membreModel.getLname();
this.fname = membreModel.getFname();
this.categorie = membreModel.getCategorie().getName();
this.club = membreModel.getClub().getName();
this.club = membreModel.getClub() == null ? "Sans club" : membreModel.getClub().getName();
this.genre = membreModel.getGenre().str;
this.licence = membreModel.getLicence();
this.country = membreModel.getCountry();