bstlboard-front/src/app/ui/comments/comments.ui.html

6 lines
286 B
HTML

<div *ngIf="comments" fxLayout="column" fxFlexFill class="comments">
<ng-container *ngFor="let comment of comments.content; let i = index">
<mat-divider *ngIf="i > 0"></mat-divider>
<ui-comment [comment]="comment" [change]="boundRefresh"></ui-comment>
</ng-container>
</div>