diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-29 16:41:25 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-07-29 16:41:25 +0200 |
commit | 8e8eb2614b4e6be90ea5cf2f7347f1eb40f28932 (patch) | |
tree | 1c65b3a1385a9d2e732a66af380578b7f40caf58 /client/src/app/shared | |
parent | 34dd7cb4ca4807e61a8c1d584b047c2cb383fe5a (diff) | |
download | PeerTube-8e8eb2614b4e6be90ea5cf2f7347f1eb40f28932.tar.gz PeerTube-8e8eb2614b4e6be90ea5cf2f7347f1eb40f28932.tar.zst PeerTube-8e8eb2614b4e6be90ea5cf2f7347f1eb40f28932.zip |
Fix help transcoding placement
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/forms/peertube-checkbox.component.html | 2 | ||||
-rw-r--r-- | client/src/app/shared/forms/peertube-checkbox.component.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/shared/forms/peertube-checkbox.component.html b/client/src/app/shared/forms/peertube-checkbox.component.html index 7b8bcf601..571a1a673 100644 --- a/client/src/app/shared/forms/peertube-checkbox.component.html +++ b/client/src/app/shared/forms/peertube-checkbox.component.html | |||
@@ -6,5 +6,5 @@ | |||
6 | <span *ngIf="labelHtml" [innerHTML]="labelHtml"></span> | 6 | <span *ngIf="labelHtml" [innerHTML]="labelHtml"></span> |
7 | </label> | 7 | </label> |
8 | 8 | ||
9 | <my-help *ngIf="helpHtml" tooltipPlacement="top" helpType="custom" i18n-customHtml [customHtml]="helpHtml"></my-help> | 9 | <my-help *ngIf="helpHtml" [tooltipPlacement]="helpPlacement" helpType="custom" i18n-customHtml [customHtml]="helpHtml"></my-help> |
10 | </div> | 10 | </div> |
diff --git a/client/src/app/shared/forms/peertube-checkbox.component.ts b/client/src/app/shared/forms/peertube-checkbox.component.ts index 9578f5618..a4b72aa37 100644 --- a/client/src/app/shared/forms/peertube-checkbox.component.ts +++ b/client/src/app/shared/forms/peertube-checkbox.component.ts | |||
@@ -19,6 +19,7 @@ export class PeertubeCheckboxComponent implements ControlValueAccessor { | |||
19 | @Input() labelText: string | 19 | @Input() labelText: string |
20 | @Input() labelHtml: string | 20 | @Input() labelHtml: string |
21 | @Input() helpHtml: string | 21 | @Input() helpHtml: string |
22 | @Input() helpPlacement = 'top' | ||
22 | @Input() disabled = false | 23 | @Input() disabled = false |
23 | 24 | ||
24 | // FIXME: https://github.com/angular/angular/issues/10816#issuecomment-307567836 | 25 | // FIXME: https://github.com/angular/angular/issues/10816#issuecomment-307567836 |