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 5f85755e591..91979d7b946 100644
--- a/src/app/collection-page/collection-form/collection-form.models.ts
+++ b/src/app/collection-page/collection-form/collection-form.models.ts
@@ -74,4 +74,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 407adeec926..86ca56b4d51 100644
--- a/src/app/collection-page/collection-page.component.html
+++ b/src/app/collection-page/collection-page.component.html
@@ -15,7 +15,9 @@
@if (logoRD$) {
+ [alternateText]="collection.descriptionThumbnail ?
+ collection.descriptionThumbnail :
+ 'collection.logo' | translate">
}
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 8b7bd36b4c9..7a39a7b7a71 100644
--- a/src/app/community-page/community-form/community-form.component.ts
+++ b/src/app/community-page/community-form/community-form.component.ts
@@ -94,6 +94,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 bf72a1a5f62..3b132a2d3f7 100644
--- a/src/app/community-page/community-page.component.html
+++ b/src/app/community-page/community-page.component.html
@@ -7,9 +7,13 @@