diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-06-28 17:16:38 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-06-28 17:16:38 +0200 |
commit | 1c5d24e5b5b2c3e506de13969d536aca0329eb04 (patch) | |
tree | 7faf49e7865ea91e63a3af46a1326d249c8d39b2 /client/src | |
parent | d473fd94ce2fd04bffc6cf6ee8f193db309c1d83 (diff) | |
download | PeerTube-1c5d24e5b5b2c3e506de13969d536aca0329eb04.tar.gz PeerTube-1c5d24e5b5b2c3e506de13969d536aca0329eb04.tar.zst PeerTube-1c5d24e5b5b2c3e506de13969d536aca0329eb04.zip |
slight improvement for column size in imports table
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html index 8f0786bd0..c029aabba 100644 --- a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html +++ b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html | |||
@@ -7,11 +7,11 @@ | |||
7 | <ng-template pTemplate="header"> | 7 | <ng-template pTemplate="header"> |
8 | <tr> | 8 | <tr> |
9 | <th style="width: 40px;"></th> | 9 | <th style="width: 40px;"></th> |
10 | <th i18n>Target</th> | 10 | <th style="width: 45%" i18n>Target</th> |
11 | <th i18n>Video</th> | 11 | <th style="width: 55%" i18n>Video</th> |
12 | <th i18n style="width: 150px">State</th> | 12 | <th style="width: 150px" i18n>State</th> |
13 | <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | 13 | <th style="width: 150px" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> |
14 | <th></th> | 14 | <th style="width: 60px"></th> |
15 | </tr> | 15 | </tr> |
16 | </ng-template> | 16 | </ng-template> |
17 | 17 | ||
@@ -40,7 +40,7 @@ | |||
40 | </td> | 40 | </td> |
41 | 41 | ||
42 | <td>{{ videoImport.state.label }}</td> | 42 | <td>{{ videoImport.state.label }}</td> |
43 | <td>{{ videoImport.createdAt }}</td> | 43 | <td>{{ videoImport.createdAt | date: 'short' }}</td> |
44 | 44 | ||
45 | <td class="action-cell"> | 45 | <td class="action-cell"> |
46 | <my-edit-button *ngIf="isVideoImportSuccess(videoImport) && videoImport.video" [routerLink]="getEditVideoUrl(videoImport.video)"></my-edit-button> | 46 | <my-edit-button *ngIf="isVideoImportSuccess(videoImport) && videoImport.video" [routerLink]="getEditVideoUrl(videoImport.video)"></my-edit-button> |