diff --git a/src/app/collection-page/collection-form/collection-form.models.ts b/src/app/collection-page/collection-form/collection-form.models.ts
index 22998af674e..20d829b3f8c 100644
--- a/src/app/collection-page/collection-form/collection-form.models.ts
+++ b/src/app/collection-page/collection-form/collection-form.models.ts
@@ -54,4 +54,9 @@ export const collectionFormModels: DynamicFormControlModel[] = [
name: 'dc.rights.license',
spellCheck: environment.form.spellCheck,
}),
+ new DynamicTextAreaModel({
+ id: 'thumbnail',
+ name: 'dspace.thumbnail.description',
+ spellCheck: environment.form.spellCheck,
+ }),
];
diff --git a/src/app/collection-page/collection-page.component.html b/src/app/collection-page/collection-page.component.html
index 4a3e28c6aad..da6d8165118 100644
--- a/src/app/collection-page/collection-page.component.html
+++ b/src/app/collection-page/collection-page.component.html
@@ -10,10 +10,15 @@
-
-
+
+ [alternateText]="collection.descriptionThumbnail">
+
+
+
diff --git a/src/app/community-page/community-form/community-form.component.ts b/src/app/community-page/community-form/community-form.component.ts
index d32d9e408f2..4b6a22aa873 100644
--- a/src/app/community-page/community-form/community-form.component.ts
+++ b/src/app/community-page/community-form/community-form.component.ts
@@ -101,6 +101,11 @@ export class CommunityFormComponent extends ComColFormComponent imple
name: 'dc.description.tableofcontents',
spellCheck: environment.form.spellCheck,
}),
+ new DynamicTextAreaModel({
+ id: 'thumbnail',
+ name: 'dspace.thumbnail.description',
+ spellCheck: environment.form.spellCheck,
+ }),
];
public constructor(protected formService: DynamicFormService,
diff --git a/src/app/community-page/community-page.component.html b/src/app/community-page/community-page.component.html
index a695e2019a3..2262e6ae5e3 100644
--- a/src/app/community-page/community-page.component.html
+++ b/src/app/community-page/community-page.component.html
@@ -6,8 +6,11 @@