diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-10-16 12:04:18 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-10-16 12:04:18 +0200 |
commit | 4b5dc9f1e452723503a3ef07405f80c793d7b5f7 (patch) | |
tree | 6dad1597f54bdc96425ce8fea341f65b77af5388 /client/src | |
parent | 8376734ee3a58edc960cb41663de5cc52c760f5b (diff) | |
download | PeerTube-4b5dc9f1e452723503a3ef07405f80c793d7b5f7.tar.gz PeerTube-4b5dc9f1e452723503a3ef07405f80c793d7b5f7.tar.zst PeerTube-4b5dc9f1e452723503a3ef07405f80c793d7b5f7.zip |
Client: explain to user we don't want scheme when making friends
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/+admin/friends/friend-add/friend-add.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/friends/friend-add/friend-add.component.html b/client/src/app/+admin/friends/friend-add/friend-add.component.html index 29c045414..81d8291cd 100644 --- a/client/src/app/+admin/friends/friend-add/friend-add.component.html +++ b/client/src/app/+admin/friends/friend-add/friend-add.component.html | |||
@@ -7,11 +7,11 @@ | |||
7 | 7 | ||
8 | <form (ngSubmit)="makeFriends()" [formGroup]="form"> | 8 | <form (ngSubmit)="makeFriends()" [formGroup]="form"> |
9 | <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy"> | 9 | <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy"> |
10 | <label for="username">Host</label> | 10 | <label [for]="'host-' + id">Host (so without "http://")</label> |
11 | 11 | ||
12 | <div class="input-group"> | 12 | <div class="input-group"> |
13 | <input | 13 | <input |
14 | type="text" class="form-control" placeholder="domain.tld" | 14 | type="text" class="form-control" placeholder="example.com" |
15 | [id]="'host-' + id" [formControlName]="'host-' + id" | 15 | [id]="'host-' + id" [formControlName]="'host-' + id" |
16 | /> | 16 | /> |
17 | <span class="input-group-btn"> | 17 | <span class="input-group-btn"> |