From 86ed52c3a0eff2dd69fbcf7ecae37e9d5aeb8145 Mon Sep 17 00:00:00 2001 From: lavanya-bmw <106523828+lavanya-bmw@users.noreply.github.com> Date: Mon, 7 Oct 2024 20:08:40 +0530 Subject: [PATCH] fix(company subscriptions): fix incorrect displaying of data (#1191) https://github.com/eclipse-tractusx/portal-frontend/issues/1190 --- CHANGELOG.md | 2 ++ src/components/pages/CompanySubscriptions/index.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ae6986fd..24ef6d842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/components/pages/CompanySubscriptions/index.tsx b/src/components/pages/CompanySubscriptions/index.tsx index 5ed78576b..c121189c4 100644 --- a/src/components/pages/CompanySubscriptions/index.tsx +++ b/src/components/pages/CompanySubscriptions/index.tsx @@ -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} />