Browse Source

Update content-field.component.html

pull/1/head
Sebastian Stehle 9 years ago
committed by GitHub
parent
commit
c610597dd4
  1. 3
      src/Squidex/app/features/content/pages/content/content-field.component.html

3
src/Squidex/app/features/content/pages/content/content-field.component.html

@ -22,6 +22,7 @@
</div> </div>
<div *ngSwitchCase="'Dropdown'"> <div *ngSwitchCase="'Dropdown'">
<select class="form-control" [formControlName]="language"> <select class="form-control" [formControlName]="language">
<option></option>
<option *ngFor="let value of field.properties.allowedValues">{{value}}</option> <option *ngFor="let value of field.properties.allowedValues">{{value}}</option>
</select> </select>
</div> </div>
@ -87,4 +88,4 @@
<div class="form-hint" *ngIf="field.properties.hints && field.properties.hints.length > 0"> <div class="form-hint" *ngIf="field.properties.hints && field.properties.hints.length > 0">
{{field.properties.hints}} {{field.properties.hints}}
</div> </div>
</div> </div>

Loading…
Cancel
Save