Skip to content

Commit

Permalink
fix(ospm): fixed blank page issue in customer overview (#1232)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-bmw authored Oct 16, 2024
1 parent 01f6440 commit 882999e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@
- **Service Release Process**
- Fixed "None" selection issue in Technical Integration [#1161](https://github.com/eclipse-tractusx/portal-frontend/issues/1161)

### Bugfixes

- **Onboarding Service Provider Management**
- fixed blank page issue in customer overview tab

## 2.3.0-alpha.2

### Change
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ const OnboardingServiceProvider = () => {
flex: 1,
sortable: false,
renderCell: ({ row }: { row: networkCompany }) =>
row?.identityProvider?.[0].alias,
row?.identityProvider?.[0]?.alias,
},
{
field: 'activeUsers',
Expand Down

0 comments on commit 882999e

Please sign in to comment.