diff options
author | Chocobozzz <me@florianbigard.com> | 2020-09-25 10:04:21 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-11-09 15:33:04 +0100 |
commit | a5cf76afa378aae81af2a9b0ce548e5d2582f832 (patch) | |
tree | 58da320232bee7c9656774c5d6811e82bbf6c696 /client/src/app/shared/shared-share-modal/video-share.component.html | |
parent | de6310b2fcbb8a6b79c546b23dfa1920724faaa7 (diff) | |
download | PeerTube-a5cf76afa378aae81af2a9b0ce548e5d2582f832.tar.gz PeerTube-a5cf76afa378aae81af2a9b0ce548e5d2582f832.tar.zst PeerTube-a5cf76afa378aae81af2a9b0ce548e5d2582f832.zip |
Add watch messages if live has not started
Diffstat (limited to 'client/src/app/shared/shared-share-modal/video-share.component.html')
-rw-r--r-- | client/src/app/shared/shared-share-modal/video-share.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-share-modal/video-share.component.html b/client/src/app/shared/shared-share-modal/video-share.component.html index 3222dc5a6..80b4e446a 100644 --- a/client/src/app/shared/shared-share-modal/video-share.component.html +++ b/client/src/app/shared/shared-share-modal/video-share.component.html | |||
@@ -107,7 +107,7 @@ | |||
107 | 107 | ||
108 | <div class="filters"> | 108 | <div class="filters"> |
109 | <div> | 109 | <div> |
110 | <div class="form-group start-at"> | 110 | <div class="form-group start-at" *ngIf="!video.isLive"> |
111 | <my-peertube-checkbox | 111 | <my-peertube-checkbox |
112 | inputName="startAt" [(ngModel)]="customizations.startAtCheckbox" | 112 | inputName="startAt" [(ngModel)]="customizations.startAtCheckbox" |
113 | i18n-labelText labelText="Start at" | 113 | i18n-labelText labelText="Start at" |
@@ -138,7 +138,7 @@ | |||
138 | 138 | ||
139 | <div class="advanced-filters collapse-transition" [ngbCollapse]="isAdvancedCustomizationCollapsed"> | 139 | <div class="advanced-filters collapse-transition" [ngbCollapse]="isAdvancedCustomizationCollapsed"> |
140 | <div> | 140 | <div> |
141 | <div class="form-group stop-at"> | 141 | <div class="form-group stop-at" *ngIf="!video.isLive"> |
142 | <my-peertube-checkbox | 142 | <my-peertube-checkbox |
143 | inputName="stopAt" [(ngModel)]="customizations.stopAtCheckbox" | 143 | inputName="stopAt" [(ngModel)]="customizations.stopAtCheckbox" |
144 | i18n-labelText labelText="Stop at" | 144 | i18n-labelText labelText="Stop at" |
@@ -167,7 +167,7 @@ | |||
167 | ></my-peertube-checkbox> | 167 | ></my-peertube-checkbox> |
168 | </div> | 168 | </div> |
169 | 169 | ||
170 | <div class="form-group"> | 170 | <div class="form-group" *ngIf="!video.isLive"> |
171 | <my-peertube-checkbox | 171 | <my-peertube-checkbox |
172 | inputName="loop" [(ngModel)]="customizations.loop" | 172 | inputName="loop" [(ngModel)]="customizations.loop" |
173 | i18n-labelText labelText="Loop" | 173 | i18n-labelText labelText="Loop" |