diff options
author | Wicklow <123956049+wickloww@users.noreply.github.com> | 2023-07-17 09:31:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-17 11:31:42 +0200 |
commit | cbe06f779f485935b227ccbb48a4493e4acda725 (patch) | |
tree | 93556507650a20ee544e1eb0a51588318156732f /client/src/app | |
parent | 260242decdd740bfee8b9f7c9536d98a6a951bcf (diff) | |
download | PeerTube-cbe06f779f485935b227ccbb48a4493e4acda725.tar.gz PeerTube-cbe06f779f485935b227ccbb48a4493e4acda725.tar.zst PeerTube-cbe06f779f485935b227ccbb48a4493e4acda725.zip |
Add e2e tests for password protected videos (#5860)
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html index a3c2aab44..9475820ac 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-edit.component.html | |||
@@ -50,9 +50,9 @@ | |||
50 | <div class="form-group"> | 50 | <div class="form-group"> |
51 | <label i18n for="privacy">Privacy</label> | 51 | <label i18n for="privacy">Privacy</label> |
52 | <div class="peertube-select-container"> | 52 | <div class="peertube-select-container"> |
53 | <select id="privacy" formControlName="privacy" class="form-control"> | 53 | <my-select-options |
54 | <option *ngFor="let privacy of videoPlaylistPrivacies" [value]="privacy.id">{{ privacy.label }}</option> | 54 | labelForId="privacy" [items]="videoPlaylistPrivacies" formControlName="privacy" [clearable]="false" |
55 | </select> | 55 | ></my-select-options> |
56 | </div> | 56 | </div> |
57 | 57 | ||
58 | <div *ngIf="formErrors.privacy" class="form-error"> | 58 | <div *ngIf="formErrors.privacy" class="form-error"> |