Skip to content

Commit

Permalink
fix(company subscriptions): fix incorrect displaying of data (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-bmw authored Oct 7, 2024
1 parent 7bc70e4 commit df8a53e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
- fixed customer link selection and fixed resetting values [#1119](https://github.com/eclipse-tractusx/portal-frontend/pull/1119)
- **Technical User Management**
- fixed error message scenario post technical user deletion action
- **Company Subscriptions**
- fixed incorrect data display in service company subscriptions [#1191](https://github.com/eclipse-tractusx/portal-frontend/pull/1191)

## 2.2.0-alpha.1

Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/CompanySubscriptions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default function CompanySubscriptions() {
fetchHook={query}
fetchHookArgs={fetchHookArgs}
fetchHookRefresh={refresh}
getRowId={(row: { [key: string]: string }) => row.offerId}
getRowId={(row: { [key: string]: string }) => row.subscriptionId}
columns={companySubscriptionsCols}
/>
</div>
Expand Down

0 comments on commit df8a53e

Please sign in to comment.