diff --git a/frontend/app/features/content/shared/forms/array-editor.component.html b/frontend/app/features/content/shared/forms/array-editor.component.html
index 2071c4114..83adc55cd 100644
--- a/frontend/app/features/content/shared/forms/array-editor.component.html
+++ b/frontend/app/features/content/shared/forms/array-editor.component.html
@@ -9,7 +9,6 @@
cdkDrag
cdkDragLockAxis="y">
+ (clone)="addItem(itemForm)"
+ (itemRemove)="removeItem(i)"
+ (itemMove)="move(itemForm, $event)" >
diff --git a/frontend/app/features/content/shared/forms/array-editor.component.ts b/frontend/app/features/content/shared/forms/array-editor.component.ts
index 149dd901b..b5d1befa7 100644
--- a/frontend/app/features/content/shared/forms/array-editor.component.ts
+++ b/frontend/app/features/content/shared/forms/array-editor.component.ts
@@ -83,7 +83,7 @@ export class ArrayEditorComponent implements OnChanges {
this.reset();
}
- public move(index: number, item: FieldArrayItemForm) {
+ public move(item: FieldArrayItemForm, index: number) {
this.formModel.move(index, item);
this.reset();
diff --git a/frontend/app/features/content/shared/forms/array-item.component.html b/frontend/app/features/content/shared/forms/array-item.component.html
index 218987d44..d0a3c849f 100644
--- a/frontend/app/features/content/shared/forms/array-item.component.html
+++ b/frontend/app/features/content/shared/forms/array-item.component.html
@@ -35,7 +35,7 @@
-