diff --git a/src/app/admin/components/manage-users/administred-structures/administred-structures.component.html b/src/app/admin/components/manage-users/administred-structures/administred-structures.component.html index 5943c02508cc249d4af1f7e050cf1602f76b7585..1755b8225b65b98da7502ea5d8aed3eac2a6677f 100644 --- a/src/app/admin/components/manage-users/administred-structures/administred-structures.component.html +++ b/src/app/admin/components/manage-users/administred-structures/administred-structures.component.html @@ -1,5 +1,5 @@ <div id="structure-list" *ngIf="structures.data.structures && structures.data.structures.length != 0"> <p *ngFor="let structure of structures.data.structures"> - <a href="/acteurs?id={{ structure._id }}" target="_blank">{{ structure.structureName }}</a> + <a *ngIf="structure" href="/acteurs?id={{ structure._id }}" target="_blank">{{ structure.structureName }}</a> </p> </div>