|
|
@ -51,6 +51,7 @@
|
|
|
|
[required]="required"
|
|
|
|
[required]="required"
|
|
|
|
[disabled]="!editable"
|
|
|
|
[disabled]="!editable"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<mat-option [value]="null"></mat-option>
|
|
|
|
<mat-option *ngFor="let option of enumValues" [value]="option">
|
|
|
|
<mat-option *ngFor="let option of enumValues" [value]="option">
|
|
|
|
{{ option }}
|
|
|
|
{{ option }}
|
|
|
|
</mat-option>
|
|
|
|
</mat-option>
|
|
|
@ -111,9 +112,7 @@
|
|
|
|
</mat-form-field>
|
|
|
|
</mat-form-field>
|
|
|
|
<ng-template #nonEditableText>
|
|
|
|
<ng-template #nonEditableText>
|
|
|
|
<ng-container *ngFor="let link of value">
|
|
|
|
<ng-container *ngFor="let link of value">
|
|
|
|
<a mat-button color="primary" [href]="link">{{
|
|
|
|
<a mat-button color="primary" [href]="link">{{ link }}</a>
|
|
|
|
link
|
|
|
|
|
|
|
|
}}</a>
|
|
|
|
|
|
|
|
</ng-container>
|
|
|
|
</ng-container>
|
|
|
|
</ng-template>
|
|
|
|
</ng-template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|