Skip to content
Snippets Groups Projects
Commit 51ffbb42 authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix(admin): broken link in structure was making admin panel crash

parent 6d2ada7c
No related branches found
No related tags found
1 merge request!2201.14
<div id="structure-list" *ngIf="structures.data.structures && structures.data.structures.length != 0"> <div id="structure-list" *ngIf="structures.data.structures && structures.data.structures.length != 0">
<p *ngFor="let structure of structures.data.structures"> <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> </p>
</div> </div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment