diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-02 11:52:55 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-02 11:52:55 +0100 |
commit | 047f9585dd91d7765d78522edebfb64107450512 (patch) | |
tree | a603f529361f6bb09c6f96d81e4fc2aac6353625 /client/src | |
parent | 256fb92e67a52a81ebe46ea6f5d4094987cebca7 (diff) | |
download | PeerTube-047f9585dd91d7765d78522edebfb64107450512.tar.gz PeerTube-047f9585dd91d7765d78522edebfb64107450512.tar.zst PeerTube-047f9585dd91d7765d78522edebfb64107450512.zip |
Fix select in share modal
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/shared/shared-share-modal/video-share.component.html | 2 |
1 files changed, 1 insertions, 1 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 f41c085e1..e5cee1b2f 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 | |||
@@ -155,7 +155,7 @@ | |||
155 | ></my-peertube-checkbox> | 155 | ></my-peertube-checkbox> |
156 | 156 | ||
157 | <div class="peertube-select-container" [ngClass]="{ disabled: !customizations.subtitleCheckbox }"> | 157 | <div class="peertube-select-container" [ngClass]="{ disabled: !customizations.subtitleCheckbox }"> |
158 | <select [(ngModel)]="customizations.subtitle" [disabled]="!customizations.subtitleCheckbox"> | 158 | <select [(ngModel)]="customizations.subtitle" [disabled]="!customizations.subtitleCheckbox" class="form-control"> |
159 | <option *ngFor="let caption of videoCaptions" [value]="caption.language.id">{{ caption.language.label }}</option> | 159 | <option *ngFor="let caption of videoCaptions" [value]="caption.language.id">{{ caption.language.label }}</option> |
160 | </select> | 160 | </select> |
161 | </div> | 161 | </div> |