diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-04 20:37:38 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-04 20:37:38 +0200 |
commit | 1cdb5c0f582502eac4d851cecc015e81cf16316b (patch) | |
tree | 79d5b8de99e72c61d55585fa1e243d9a847dd107 /client/src/app/videos/video-list | |
parent | fe3b20cdaf54125674afd3c3d0aa8e9411bb0722 (diff) | |
download | PeerTube-1cdb5c0f582502eac4d851cecc015e81cf16316b.tar.gz PeerTube-1cdb5c0f582502eac4d851cecc015e81cf16316b.tar.zst PeerTube-1cdb5c0f582502eac4d851cecc015e81cf16316b.zip |
Handle error for the video upload
Diffstat (limited to 'client/src/app/videos/video-list')
-rw-r--r-- | client/src/app/videos/video-list/video-list.component.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/videos/video-list/video-list.component.html b/client/src/app/videos/video-list/video-list.component.html index 155025b5e..00392a81f 100644 --- a/client/src/app/videos/video-list/video-list.component.html +++ b/client/src/app/videos/video-list/video-list.component.html | |||
@@ -1,5 +1,9 @@ | |||
1 | <div class="row videos-info"> | 1 | <div class="row videos-info"> |
2 | <div class="col-md-9 videos-total-results"> {{ pagination.total }} videos</div> | 2 | <div class="col-md-9 videos-total-results"> |
3 | {{ pagination.total }} videos | ||
4 | |||
5 | <my-loader [loading]="loading"></my-loader> | ||
6 | </div> | ||
3 | <my-video-sort class="col-md-3" [currentSort]="sort" (sort)="onSort($event)"></my-video-sort> | 7 | <my-video-sort class="col-md-3" [currentSort]="sort" (sort)="onSort($event)"></my-video-sort> |
4 | </div> | 8 | </div> |
5 | 9 | ||