Commit fdbae058 authored by Juraj Fiala's avatar Juraj Fiala
Browse files

fix: Make agent codenames prettier

parent 258c71a3
Pipeline #142526 waiting for manual action with stage
......@@ -40,7 +40,11 @@
<mat-action-list>
<mat-list-item *ngFor="let agent of agents" [routerLink]="['/auth/agent/', agent.id]">
<h2 mat-line> {{agent.name}} </h2>
<p mat-line>A.K.A. <span *ngFor="let codeName of agent.codeNames"> {{codeName.codeName}}, </span></p>
<p mat-line>
<span *ngFor="let codeName of agent.codeNames; let isLast = last" class="italic">
{{codeName.codeName}}{{isLast ? '' : ', '}}
</span>
</p>
<mat-divider></mat-divider>
</mat-list-item>
</mat-action-list>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment