blob: 73f9f0fe113d0097ea6d3ff456893ce5f6017f51 (
plain) (
tree)
|
|
<div *ngIf="hasVideos$ | async" class="other-videos">
<div i18n class="title-page title-page-single">
Other videos
</div>
<div *ngFor="let video of (videos$ | async)">
<my-video-miniature [video]="video" [user]="user"></my-video-miniature>
</div>
</div>
|