mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
523 B
16 lines
523 B
<div class="array-container" *ngIf="arrayControl.controls.length > 0">
|
|
<div class="item" *ngFor="let itemForm of arrayControl.controls; let i = index">
|
|
<sqx-array-item
|
|
[form]="form"
|
|
[field]="field"
|
|
[itemForm]="itemForm"
|
|
[language]="language"
|
|
[languages]="languages"
|
|
(removing)="removeItem(i)">
|
|
</sqx-array-item>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-success" (click)="addItem(); $event.preventDefault()">
|
|
Add Item
|
|
</button>
|