diff --git a/src/Squidex/app/features/content/shared/array-editor.component.html b/src/Squidex/app/features/content/shared/array-editor.component.html
index d881c1d6d..7516160e0 100644
--- a/src/Squidex/app/features/content/shared/array-editor.component.html
+++ b/src/Squidex/app/features/content/shared/array-editor.component.html
@@ -5,10 +5,12 @@
diff --git a/src/Squidex/app/features/content/shared/array-editor.component.ts b/src/Squidex/app/features/content/shared/array-editor.component.ts
index 4877c97db..aa1f9a47d 100644
--- a/src/Squidex/app/features/content/shared/array-editor.component.ts
+++ b/src/Squidex/app/features/content/shared/array-editor.component.ts
@@ -37,6 +37,12 @@ export class ArrayEditorComponent {
@Input()
public arrayControl: FormArray;
+ public isHidden = false;
+
+ public hide(hide: boolean) {
+ this.isHidden = hide;
+ }
+
public removeItem(index: number) {
this.form.removeArrayItem(this.field, this.language, index);
}
diff --git a/src/Squidex/app/features/content/shared/array-item.component.html b/src/Squidex/app/features/content/shared/array-item.component.html
index 337033cfa..583ae798b 100644
--- a/src/Squidex/app/features/content/shared/array-item.component.html
+++ b/src/Squidex/app/features/content/shared/array-item.component.html
@@ -4,6 +4,13 @@
+
+
+
+
+
+
+
-