Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Jan Smejkal
Pa165 Secret Archive
Commits
fdbae058
Commit
fdbae058
authored
May 25, 2022
by
Juraj Fiala
Browse files
fix: Make agent codenames prettier
parent
258c71a3
Pipeline
#142526
waiting for manual action with stage
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
frontend/src/app/agent/agent-list.component.html
View file @
fdbae058
...
...
@@ -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>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment