diff --git a/Acknowledgment-ReadMe.md b/Acknowledgment-ReadMe.md
new file mode 100644
index 00000000000..b2caaf86282
--- /dev/null
+++ b/Acknowledgment-ReadMe.md
@@ -0,0 +1,13 @@
+
+
+
+
+---
+
+This project output was developed with financial contributions from the [EOSC CZ](https://www.eosc.cz/projekty/narodni-podpora-pro-eosc) initiative through the project **National Repository Platform for Research Data** (CZ.02.01.01/00/23_014/0008787), funded by the Programme Johannes Amos Comenius (P JAC) of the Ministry of Education, Youth and Sports of the Czech Republic (MEYS).
+
+---
+
+
+
+
diff --git a/src/app/core/metadata/metadata-bitstream.model.ts b/src/app/core/metadata/metadata-bitstream.model.ts
index c5eed0594a4..eace9ba1121 100644
--- a/src/app/core/metadata/metadata-bitstream.model.ts
+++ b/src/app/core/metadata/metadata-bitstream.model.ts
@@ -31,7 +31,7 @@ export class MetadataBitstream extends ListableObject implements HALResource {
* The identifier of this metadata field
*/
@autoserialize
- id: number;
+ id: string;
/**
* The name of this bitstream
diff --git a/src/app/item-page/clarin-files-section/clarin-files-section.component.spec.ts b/src/app/item-page/clarin-files-section/clarin-files-section.component.spec.ts
index f5e795d4d0e..a1455425ebf 100644
--- a/src/app/item-page/clarin-files-section/clarin-files-section.component.spec.ts
+++ b/src/app/item-page/clarin-files-section/clarin-files-section.component.spec.ts
@@ -23,7 +23,7 @@ describe('ClarinFilesSectionComponent', () => {
let halService: HALEndpointService;
// Set up the mock service's getMetadataBitstream method to return a simple stream
const metadatabitstream = new MetadataBitstream();
- metadatabitstream.id = 123;
+ metadatabitstream.id = '70ccc608-f6a5-4c96-ab2d-53bc56ae8ebe';
metadatabitstream.name = 'test';
metadatabitstream.description = 'test';
metadatabitstream.fileSize = 1024;
diff --git a/src/app/item-page/clarin-files-section/clarin-files-section.component.ts b/src/app/item-page/clarin-files-section/clarin-files-section.component.ts
index f9092be3020..cd7575d4d62 100644
--- a/src/app/item-page/clarin-files-section/clarin-files-section.component.ts
+++ b/src/app/item-page/clarin-files-section/clarin-files-section.component.ts
@@ -80,7 +80,7 @@ export class ClarinFilesSectionComponent implements OnInit {
ngOnInit(): void {
this.registryService
- .getMetadataBitstream(this.itemHandle, 'ORIGINAL,TEXT,THUMBNAIL')
+ .getMetadataBitstream(this.itemHandle, 'ORIGINAL')
.pipe(getAllSucceededRemoteListPayload())
.subscribe((data: MetadataBitstream[]) => {
this.listOfFiles.next(data);
diff --git a/src/app/item-page/simple/field-components/preview-section/file-description/file-description.component.html b/src/app/item-page/simple/field-components/preview-section/file-description/file-description.component.html
index 3d029dfef6c..91287138d49 100644
--- a/src/app/item-page/simple/field-components/preview-section/file-description/file-description.component.html
+++ b/src/app/item-page/simple/field-components/preview-section/file-description/file-description.component.html
@@ -1,13 +1,15 @@