|
|
|
@ -61,9 +61,9 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div *ngSwitchCase="valueTypes.SelectionStringValueType"> |
|
|
|
<div class="form-group mb-0"> |
|
|
|
<label [htmlFor]="feature.name">{{ feature.displayName }}</label> |
|
|
|
<ng-container *ngIf="feature.valueType.itemSource?.items?.length"> |
|
|
|
<ng-container *ngIf="feature.valueType.itemSource?.items?.length"> |
|
|
|
<div class="form-group mb-0"> |
|
|
|
<label [htmlFor]="feature.name">{{ feature.displayName }}</label> |
|
|
|
<select class="form-control" [id]="feature.name" [(ngModel)]="feature.value"> |
|
|
|
<option |
|
|
|
*ngFor=" |
|
|
|
@ -78,11 +78,11 @@ |
|
|
|
}}</option |
|
|
|
> |
|
|
|
</select> |
|
|
|
</ng-container> |
|
|
|
<ng-container |
|
|
|
*ngTemplateOutlet="descTmp; context: { $implicit: feature.description }" |
|
|
|
></ng-container> |
|
|
|
</div> |
|
|
|
<ng-container |
|
|
|
*ngTemplateOutlet="descTmp; context: { $implicit: feature.description }" |
|
|
|
></ng-container> |
|
|
|
</div> |
|
|
|
</ng-container> |
|
|
|
</div> |
|
|
|
<div *ngSwitchDefault>{{ feature.displayName }}</div> |
|
|
|
</div> |
|
|
|
|