Skip to content

Commit

Permalink
fix: show each document on a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Nov 9, 2023
1 parent 8fd3640 commit 13cf2af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ <h1>{{ event.title }}</h1>
<div class="highlight">{{ 'EVENT_DETAILS.DOCUMENTS' | translate }}</div>
<div>
<ng-container *ngFor="let doc of event.documents">
<a href="{{ doc.url }}" target="_blank">{{ doc.originalName }}</a>
<a href="{{ doc.url }}" target="_blank" style="display: block">{{ doc.originalName }}</a>
</ng-container>
</div>
</div>
Expand Down

0 comments on commit 13cf2af

Please sign in to comment.