diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3a0efb7..212081e16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ - Fixed 'activeTab' conditions to load data for Tab-2(Registration Process) [#1050](https://github.com/eclipse-tractusx/portal-frontend/pull/1050) - **App Release Process**: - Fixed role upload does not work using Firefox [#1003](https://github.com/eclipse-tractusx/portal-frontend/pull/1003) + - Fixed "None" selection issue in Technical Integration -> App Release Process [#1036](https://github.com/eclipse-tractusx/portal-frontend/issues/1036) - **Technical User Management** - Display technicalUserManagement button based on role validation [#1073](https://github.com/eclipse-tractusx/portal-frontend/pull/1073) - **OSP Consent form** diff --git a/src/components/shared/basic/ReleaseProcess/TechnicalIntegration/index.tsx b/src/components/shared/basic/ReleaseProcess/TechnicalIntegration/index.tsx index ee5831849..74b9e703d 100644 --- a/src/components/shared/basic/ReleaseProcess/TechnicalIntegration/index.tsx +++ b/src/components/shared/basic/ReleaseProcess/TechnicalIntegration/index.tsx @@ -143,7 +143,11 @@ export default function TechnicalIntegration() { ) useEffect(() => { - setTechUserProfiles(userProfiles) + // Set default value as "None" when user profiles don't have any roles + // Initially, value is "None" + setTechUserProfiles( + userProfiles.length > 0 ? userProfiles : [technicalUserNone] + ) }, [userProfiles]) const defaultValues = {