diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-04-29 16:51:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-04-29 16:51:40 +0200 |
commit | eb4e088abfc24882cc4e8b975a3c5f6551fbed07 (patch) | |
tree | bc05e946d79140d9ead6a684e9237ae29d1631fe /client/angular/videos/components | |
parent | 9ced64e08fb37dc2924eb80a9e8b34e668cd2756 (diff) | |
download | PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.tar.gz PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.tar.zst PeerTube-eb4e088abfc24882cc4e8b975a3c5f6551fbed07.zip |
Update client dependencies
Diffstat (limited to 'client/angular/videos/components')
-rw-r--r-- | client/angular/videos/components/list/videos-list.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/angular/videos/components/list/videos-list.component.html b/client/angular/videos/components/list/videos-list.component.html index 9e51675dd..4eeacbc77 100644 --- a/client/angular/videos/components/list/videos-list.component.html +++ b/client/angular/videos/components/list/videos-list.component.html | |||
@@ -1,5 +1,5 @@ | |||
1 | <div *ngIf="videos.length === 0">There is no video.</div> | 1 | <div *ngIf="videos.length === 0">There is no video.</div> |
2 | <div *ngFor="#video of videos" class="video"> | 2 | <div *ngFor="let video of videos" class="video"> |
3 | <div> | 3 | <div> |
4 | <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a> | 4 | <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a> |
5 | <span class="video_pod_url">{{ video.podUrl }}</span> | 5 | <span class="video_pod_url">{{ video.podUrl }}</span> |