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 407adeec926..cfe42b66e6e 100644
--- a/src/app/collection-page/collection-page.component.html
+++ b/src/app/collection-page/collection-page.component.html
@@ -11,8 +11,15 @@
-
- @if (logoRD$) {
+
+ @if (logoRD$ && collection.descriptionThumbnail) {
+
+
+ }
+
+ @if (logoRD$ && !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 492d2d4141d..d6d9c484bcb 100644
--- a/src/app/community-page/community-form/community-form.component.ts
+++ b/src/app/community-page/community-form/community-form.component.ts
@@ -95,6 +95,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..c7162e6fc0f 100644
--- a/src/app/community-page/community-page.component.html
+++ b/src/app/community-page/community-page.component.html
@@ -7,8 +7,13 @@