aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.html
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2022-01-26 22:09:11 +0200
committerAlex Shnitman <alexta69@gmail.com>2022-01-26 22:09:11 +0200
commite345e3b6fa5fc11628c390728f6fee1fb94f162d (patch)
tree5a425e2a8957cb60c68587130bbb9ef72122cb8d /ui/src/app/app.component.html
parentadd note about Watchtower to README (diff)
downloadmetube-e345e3b6fa5fc11628c390728f6fee1fb94f162d.tar.gz
metube-e345e3b6fa5fc11628c390728f6fee1fb94f162d.tar.bz2
metube-e345e3b6fa5fc11628c390728f6fee1fb94f162d.zip
add title with filename to downloads (closes #105)
Diffstat (limited to 'ui/src/app/app.component.html')
-rw-r--r--ui/src/app/app.component.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index bf76694..9317b85 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -83,7 +83,7 @@
<td>
<app-slave-checkbox [id]="download.key" [master]="queueMasterCheckbox" [checkable]="download.value"></app-slave-checkbox>
</td>
- <td>{{ download.value.title }}</td>
+ <td title="{{ download.value.filename }}">{{ download.value.title }}</td>
<td><ngb-progressbar height="1.5rem" [showValue]="download.value.status != 'preparing'" [striped]="download.value.status == 'preparing'" [animated]="download.value.status == 'preparing'" type="success" [value]="download.value.status == 'preparing' ? 100 : download.value.percent | number:'1.0-0'"></ngb-progressbar></td>
<td>{{ download.value.speed | speed }}</td>
<td>{{ download.value.eta | eta }}</td>
bgstack15