diff options
-rw-r--r-- | client/src/app/+admin/overview/videos/video-list.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/overview/videos/video-list.component.html b/client/src/app/+admin/overview/videos/video-list.component.html index fb5e533f1..a6cd2e257 100644 --- a/client/src/app/+admin/overview/videos/video-list.component.html +++ b/client/src/app/+admin/overview/videos/video-list.component.html | |||
@@ -107,7 +107,7 @@ | |||
107 | 107 | ||
108 | <ul> | 108 | <ul> |
109 | <li *ngFor="let file of video.files"> | 109 | <li *ngFor="let file of video.files"> |
110 | {{ file.resolution.label }}: {{ file.size | bytes: 1 }} | 110 | <a target="_blank" rel="noopener noreferrer" [href]="file.fileUrl">{{ file.resolution.label }}</a>: {{ file.size | bytes: 1 }} |
111 | 111 | ||
112 | <my-global-icon | 112 | <my-global-icon |
113 | *ngIf="canRemoveOneFile(video)" | 113 | *ngIf="canRemoveOneFile(video)" |
@@ -123,7 +123,7 @@ | |||
123 | 123 | ||
124 | <ul> | 124 | <ul> |
125 | <li *ngFor="let file of video.streamingPlaylists[0].files"> | 125 | <li *ngFor="let file of video.streamingPlaylists[0].files"> |
126 | {{ file.resolution.label }}: {{ file.size | bytes: 1 }} | 126 | <a target="_blank" rel="noopener noreferrer" [href]="file.fileUrl">{{ file.resolution.label }}</a>: {{ file.size | bytes: 1 }} |
127 | 127 | ||
128 | <my-global-icon | 128 | <my-global-icon |
129 | *ngIf="canRemoveOneFile(video)" | 129 | *ngIf="canRemoveOneFile(video)" |