Skip to content

Commit 882999e

Browse files
authored
fix(ospm): fixed blank page issue in customer overview (eclipse-tractusx#1232)
1 parent 01f6440 commit 882999e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
- **Service Release Process**
4343
- Fixed "None" selection issue in Technical Integration [#1161](https://github.com/eclipse-tractusx/portal-frontend/issues/1161)
4444

45+
### Bugfixes
46+
47+
- **Onboarding Service Provider Management**
48+
- fixed blank page issue in customer overview tab
49+
4550
## 2.3.0-alpha.2
4651

4752
### Change

src/components/pages/OnboardingServiceProvider/OnboardingServiceProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ const OnboardingServiceProvider = () => {
400400
flex: 1,
401401
sortable: false,
402402
renderCell: ({ row }: { row: networkCompany }) =>
403-
row?.identityProvider?.[0].alias,
403+
row?.identityProvider?.[0]?.alias,
404404
},
405405
{
406406
field: 'activeUsers',

0 commit comments

Comments
 (0)