diff --git a/CHANGELOG.md b/CHANGELOG.md
index 11ef345ef..84ccb2830 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,23 @@
## Unreleased
+## 2.3.0-RC2
+
+### Bugfixes
+
+- **Application Request**
+ - fixed documents not getting displayed [#1223](https://github.com/eclipse-tractusx/portal-frontend/pull/1223)
+- **Use Case Participation**
+ - fixed columns alignment UI issue [#1247](https://github.com/eclipse-tractusx/portal-frontend/pull/1247)
+- **App Overview Details**
+ - fixed displaying of conformity document in separate section and all other available documents in the documents section [#1235](https://github.com/eclipse-tractusx/portal-frontend/pull/1235)
+- **App and Service Subscription Management** [#1246](https://github.com/eclipse-tractusx/portal-frontend/pull/1246)
+ - fixed showing of all available active apps/services in the filter section
+ - added heading in each section for the better user experience
+ - fixed showing of all subscriptions including inactive one in the list
+- **App Overview**
+ - updated the regex for search validation for numeric and special characters [#1179] (https://github.com/eclipse-tractusx/portal-frontend/pull/1179)
+
## 2.3.0-RC1
### Change
diff --git a/package.json b/package.json
index 60fa9c4ef..72f3dea99 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@catena-x/portal-frontend",
- "version": "v2.3.0-RC1",
+ "version": "v2.3.0-RC2",
"description": "Catena-X Portal Frontend",
"author": "Catena-X Contributors",
"license": "Apache-2.0",
diff --git a/src/assets/locales/de/main.json b/src/assets/locales/de/main.json
index 2e38d65f9..b525f4fe2 100644
--- a/src/assets/locales/de/main.json
+++ b/src/assets/locales/de/main.json
@@ -1242,7 +1242,12 @@
"message": "Das unten definierte technische Benutzerprofil zeigt die Benutzerberechtigung an, die dem technischen Benutzer, der im Rahmen der App-/Dienstaktivierung erstellt wurde, automatisch zugewiesen wird."
},
"pendingTooltip": "Application subscription is pending. The app provider is informed",
- "subscribedTooltip": "Die App ist bereits von Ihrem Unternehmen abonniert."
+ "subscribedTooltip": "Die App ist bereits von Ihrem Unternehmen abonniert.",
+ "document": {
+ "noDocumentsAvailable": "No documents available",
+ "conformityDocument": "Conformity Document",
+ "conformityDocumentsDescription": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
+ }
},
"apprelease": {
"headerTitle": "App Release Process",
diff --git a/src/assets/locales/de/servicerelease.json b/src/assets/locales/de/servicerelease.json
index 532e69ea8..d0231ecb7 100644
--- a/src/assets/locales/de/servicerelease.json
+++ b/src/assets/locales/de/servicerelease.json
@@ -202,7 +202,8 @@
"url": "URL:",
"technicaluserType": "Assigned Permissions:",
"close": "Close"
- }
+ },
+ "offersHeading": "Services Offered"
},
"adminBoard": {
"headerTitle": "Service request management",
diff --git a/src/assets/locales/en/main.json b/src/assets/locales/en/main.json
index 8ce25b01e..9dba6ca83 100644
--- a/src/assets/locales/en/main.json
+++ b/src/assets/locales/en/main.json
@@ -1211,7 +1211,12 @@
"message": "The technical user profile defined below displays the user permission which the technical user created as part of the app/service activation gets automatically assigned."
},
"pendingTooltip": "Application subscription is pending. The app provider is informed",
- "subscribedTooltip": "The app is already subscribed by your company"
+ "subscribedTooltip": "The app is already subscribed by your company",
+ "document": {
+ "noDocumentsAvailable": "No documents available",
+ "conformityDocument": "Conformity Document",
+ "conformityDocumentsDescription": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
+ }
},
"apprelease": {
"headerTitle": "App Release Process",
diff --git a/src/assets/locales/en/servicerelease.json b/src/assets/locales/en/servicerelease.json
index 8963151bb..9176481e2 100644
--- a/src/assets/locales/en/servicerelease.json
+++ b/src/assets/locales/en/servicerelease.json
@@ -202,7 +202,8 @@
"url": "URL:",
"technicaluserType": "Assigned Permissions:",
"close": "Close"
- }
+ },
+ "offersHeading": "Services Offered"
},
"adminBoard": {
"headerTitle": "Service request management",
diff --git a/src/components/pages/Admin/components/RegistrationRequests/CompanyDetailOverlay/index.tsx b/src/components/pages/Admin/components/RegistrationRequests/CompanyDetailOverlay/index.tsx
index 9977b9e0d..2bb2b28ef 100644
--- a/src/components/pages/Admin/components/RegistrationRequests/CompanyDetailOverlay/index.tsx
+++ b/src/components/pages/Admin/components/RegistrationRequests/CompanyDetailOverlay/index.tsx
@@ -192,9 +192,10 @@ const CompanyDetailOverlay = ({
key: '',
value: (
<>
- {company?.documents && company.documents.length > 0 ? (
+ {selectedCompany?.documents &&
+ selectedCompany.documents.length > 0 ? (
<>
- {company.documents.map(
+ {selectedCompany.documents.map(
(contract: {
documentId: string
documentType: string
diff --git a/src/components/pages/AppDetail/components/AppDetailDocuments/index.tsx b/src/components/pages/AppDetail/components/AppDetailDocuments/index.tsx
index 84037c92c..e438732e5 100644
--- a/src/components/pages/AppDetail/components/AppDetailDocuments/index.tsx
+++ b/src/components/pages/AppDetail/components/AppDetailDocuments/index.tsx
@@ -26,7 +26,10 @@ import { type AppDetails, type Documents } from 'features/apps/types'
import { useFetchDocumentByIdMutation } from 'features/apps/apiSlice'
import { download } from 'utils/downloadUtils'
import '../../AppDetail.scss'
-import { DocumentTypeId } from 'features/appManagement/apiSlice'
+import {
+ type DocumentData,
+ DocumentTypeId,
+} from 'features/appManagement/apiSlice'
export default function AppDetailDocuments({ item }: { item: AppDetails }) {
const { t } = useTranslation()
@@ -51,6 +54,35 @@ export default function AppDetailDocuments({ item }: { item: AppDetails }) {
}
return (