diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-10 10:20:55 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-10 10:20:55 +0200 |
commit | 0164fc112a98897849a8eda2f0b5d208e813e014 (patch) | |
tree | 743d84cf1e4d942972d1d6862da22857ae39a55a /client/src/app/+my-library | |
parent | 4c8749cb9e1e4a8d61697434e372f342def7bc70 (diff) | |
parent | bffee1d538aa7b51b78d646a0d372b352c073cd8 (diff) | |
download | PeerTube-0164fc112a98897849a8eda2f0b5d208e813e014.tar.gz PeerTube-0164fc112a98897849a8eda2f0b5d208e813e014.tar.zst PeerTube-0164fc112a98897849a8eda2f0b5d208e813e014.zip |
Merge branch 'release/4.2.0' into develop
Diffstat (limited to 'client/src/app/+my-library')
3 files changed, 7 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-video-imports/my-video-imports.component.html b/client/src/app/+my-library/my-video-imports/my-video-imports.component.html index c5f0db17f..79fb4da26 100644 --- a/client/src/app/+my-library/my-video-imports/my-video-imports.component.html +++ b/client/src/app/+my-library/my-video-imports/my-video-imports.component.html | |||
@@ -24,7 +24,7 @@ | |||
24 | <ng-template pTemplate="body" let-expanded="expanded" let-videoImport> | 24 | <ng-template pTemplate="body" let-expanded="expanded" let-videoImport> |
25 | <tr> | 25 | <tr> |
26 | <td class="expand-cell" [pRowToggler]="videoImport"> | 26 | <td class="expand-cell" [pRowToggler]="videoImport"> |
27 | <my-table-expander-icon [expanded]="expanded"></my-table-expander-icon> | 27 | <my-table-expander-icon *ngIf="videoImport.error" [expanded]="expanded"></my-table-expander-icon> |
28 | </td> | 28 | </td> |
29 | 29 | ||
30 | <td class="action-cell"> | 30 | <td class="action-cell"> |
diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss index 47c323d6d..840e449ea 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.scss | |||
@@ -20,6 +20,11 @@ input[type=text] { | |||
20 | @include peertube-select-container(340px); | 20 | @include peertube-select-container(340px); |
21 | } | 21 | } |
22 | 22 | ||
23 | my-select-channel { | ||
24 | display: block; | ||
25 | max-width: 340px; | ||
26 | } | ||
27 | |||
23 | input[type=submit] { | 28 | input[type=submit] { |
24 | @include peertube-button; | 29 | @include peertube-button; |
25 | @include orange-button; | 30 | @include orange-button; |
diff --git a/client/src/app/+my-library/my-videos/my-videos.component.ts b/client/src/app/+my-library/my-videos/my-videos.component.ts index c8012ec78..2f1eb84ba 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.ts +++ b/client/src/app/+my-library/my-videos/my-videos.component.ts | |||
@@ -67,7 +67,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook { | |||
67 | 67 | ||
68 | user: User | 68 | user: User |
69 | 69 | ||
70 | inputFilters: AdvancedInputFilter[] | 70 | inputFilters: AdvancedInputFilter[] = [] |
71 | 71 | ||
72 | disabled = false | 72 | disabled = false |
73 | 73 | ||