diff --git a/src/frontend/app/dashboard/download/page.tsx b/src/frontend/app/dashboard/download/page.tsx index 25d4dfe..cfa5679 100644 --- a/src/frontend/app/dashboard/download/page.tsx +++ b/src/frontend/app/dashboard/download/page.tsx @@ -152,9 +152,9 @@ const DownloadPage: React.FC = () => { {catalogItems.map((item) => ( - {item.name} + {item.title} + {item.name} {item.size} - {item.title} {item.date} {item.author} {item.contenttype} @@ -188,9 +188,9 @@ const DownloadPage: React.FC = () => { {negotiatedContracts.map((item) => ( - {item.fileName} + {item.title} + {item.fileName} {item.fileSize} - {item.title} {item.date} {item.author} {item.contenttype} diff --git a/src/frontend/app/dashboard/upload/page.tsx b/src/frontend/app/dashboard/upload/page.tsx index 0388d33..d59f7aa 100644 --- a/src/frontend/app/dashboard/upload/page.tsx +++ b/src/frontend/app/dashboard/upload/page.tsx @@ -221,9 +221,9 @@ const UploadPage: React.FC = () => { const policy = getPolicyFromContract("contract-" + file.id); return ( - {file.name} + {file.title} + {file.name} {file.size} - {file.title} {file.date} {file.author} {file.contenttype}