diff options
author | Chocobozzz <me@florianbigard.com> | 2022-10-10 14:44:51 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-10-10 14:46:04 +0200 |
commit | 1a3b53de6f39d0301c48d47d53cca3eb7cd60197 (patch) | |
tree | cc12bdb0a7c5355d43c041dd7270189bdef8b81b /client/src | |
parent | 4624283054370834232134bc6c321797bdaa3284 (diff) | |
download | PeerTube-1a3b53de6f39d0301c48d47d53cca3eb7cd60197.tar.gz PeerTube-1a3b53de6f39d0301c48d47d53cca3eb7cd60197.tar.zst PeerTube-1a3b53de6f39d0301c48d47d53cca3eb7cd60197.zip |
Use video links for files
Diffstat (limited to 'client/src')
-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)" |