Skip to content
Snippets Groups Projects
Commit c477a851 authored by Lukasz Lopatowski's avatar Lukasz Lopatowski
Browse files

NMAAS-1102: Lowercasing tags on app details view

parent 24a18c23
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<div class="row"> <div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6" *ngIf="app?.tags"> <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6" *ngIf="app?.tags">
<a *ngFor="let tag of app.tags" class="tag-button"> <a *ngFor="let tag of app.tags" class="tag-button">
{{tag.name | titlecase}} {{tag.name | lowercase}}
</a> </a>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment