diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-10 15:58:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-10 15:58:38 +0200 |
commit | a70bf3bd3337406704af5907a015ba385df0483d (patch) | |
tree | 5c64314edae6dc68339116b26b7d0480cdb65e4e /client/src/app/+videos | |
parent | b15fcd49bff880a8246cb48292af3ae8d66f0699 (diff) | |
download | PeerTube-a70bf3bd3337406704af5907a015ba385df0483d.tar.gz PeerTube-a70bf3bd3337406704af5907a015ba385df0483d.tar.zst PeerTube-a70bf3bd3337406704af5907a015ba385df0483d.zip |
Rename input toggle hidden to input text
It's more than just an hidden toggle
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r-- | client/src/app/+videos/+video-edit/shared/video-edit.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.html b/client/src/app/+videos/+video-edit/shared/video-edit.component.html index 44004eb21..26bfaa583 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.html +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.html | |||
@@ -243,17 +243,17 @@ | |||
243 | 243 | ||
244 | <div *ngIf="liveVideo.rtmpUrl" class="form-group"> | 244 | <div *ngIf="liveVideo.rtmpUrl" class="form-group"> |
245 | <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label> | 245 | <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label> |
246 | <my-input-toggle-hidden inputId="liveVideoRTMPUrl" [value]="liveVideo.rtmpUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-toggle-hidden> | 246 | <my-input-text inputId="liveVideoRTMPUrl" [value]="liveVideo.rtmpUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text> |
247 | </div> | 247 | </div> |
248 | 248 | ||
249 | <div *ngIf="liveVideo.rtmpsUrl" class="form-group"> | 249 | <div *ngIf="liveVideo.rtmpsUrl" class="form-group"> |
250 | <label for="liveVideoRTMPSUrl" i18n>Live RTMPS Url</label> | 250 | <label for="liveVideoRTMPSUrl" i18n>Live RTMPS Url</label> |
251 | <my-input-toggle-hidden inputId="liveVideoRTMPSUrl" [value]="liveVideo.rtmpsUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-toggle-hidden> | 251 | <my-input-text inputId="liveVideoRTMPSUrl" [value]="liveVideo.rtmpsUrl" [withToggle]="false" [withCopy]="true" [show]="true" [readonly]="true"></my-input-text> |
252 | </div> | 252 | </div> |
253 | 253 | ||
254 | <div class="form-group"> | 254 | <div class="form-group"> |
255 | <label for="liveVideoStreamKey" i18n>Live stream key</label> | 255 | <label for="liveVideoStreamKey" i18n>Live stream key</label> |
256 | <my-input-toggle-hidden inputId="liveVideoStreamKey" [value]="liveVideo.streamKey" [withCopy]="true" [readonly]="true"></my-input-toggle-hidden> | 256 | <my-input-text inputId="liveVideoStreamKey" [value]="liveVideo.streamKey" [withCopy]="true" [readonly]="true"></my-input-text> |
257 | 257 | ||
258 | <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div> | 258 | <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div> |
259 | </div> | 259 | </div> |