diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-10-27 08:51:40 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-10-27 08:51:40 +0200 |
commit | d6e32a2e91c090ed342eaf0709caac2630a67ff3 (patch) | |
tree | a461a7cedeb87a992f2a6f476fff78e346f00b5d /client/src/app/account/account-details | |
parent | c2962505115563ad1510e8116f3b362887cac71f (diff) | |
download | PeerTube-d6e32a2e91c090ed342eaf0709caac2630a67ff3.tar.gz PeerTube-d6e32a2e91c090ed342eaf0709caac2630a67ff3.tar.zst PeerTube-d6e32a2e91c090ed342eaf0709caac2630a67ff3.zip |
Replace NSFW with "mature or explicit content"
Blur their thumbnail and name
Diffstat (limited to 'client/src/app/account/account-details')
-rw-r--r-- | client/src/app/account/account-details/account-details.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/account/account-details/account-details.component.html b/client/src/app/account/account-details/account-details.component.html index 24b0750d2..8f4f176af 100644 --- a/client/src/app/account/account-details/account-details.component.html +++ b/client/src/app/account/account-details/account-details.component.html | |||
@@ -2,11 +2,11 @@ | |||
2 | 2 | ||
3 | <form role="form" (ngSubmit)="updateDetails()" [formGroup]="form"> | 3 | <form role="form" (ngSubmit)="updateDetails()" [formGroup]="form"> |
4 | <div class="form-group"> | 4 | <div class="form-group"> |
5 | <label for="displayNSFW">Display NSFW videos</label> | ||
6 | <input | 5 | <input |
7 | type="checkbox" id="displayNSFW" | 6 | type="checkbox" id="displayNSFW" |
8 | formControlName="displayNSFW" | 7 | formControlName="displayNSFW" |
9 | > | 8 | > |
9 | <label for="displayNSFW">Display videos that contain mature or explicit content</label> | ||
10 | <div *ngIf="formErrors['displayNSFW']" class="alert alert-danger"> | 10 | <div *ngIf="formErrors['displayNSFW']" class="alert alert-danger"> |
11 | {{ formErrors['displayNSFW'] }} | 11 | {{ formErrors['displayNSFW'] }} |
12 | </div> | 12 | </div> |