RED-8817: added description support for extraOption.
This commit is contained in:
parent
4b8fa5f533
commit
aea61cbcf6
@ -3,6 +3,7 @@ interface ExtraOption {
|
||||
checked: boolean;
|
||||
hidden?: boolean;
|
||||
disabled?: boolean;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
export interface DetailsRadioOption<I> {
|
||||
|
||||
@ -27,6 +27,11 @@
|
||||
>
|
||||
{{ option.extraOption.label | translate }}
|
||||
</mat-checkbox>
|
||||
<span
|
||||
*ngIf="option.extraOption.description"
|
||||
[innerHTML]="option.extraOption.description | translate"
|
||||
class="hint"
|
||||
></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user