Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into fix/1148/semantic-hub-filters
  • Loading branch information
lavanya-bmw committed Oct 24, 2024
2 parents 885b3c8 + a9836e7 commit 7113d7d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

### Bugfixes

- **Technical User Management**
- fixed usertype column to display data from API [#1253](https://github.com/eclipse-tractusx/portal-frontend/pull/1253)
- **Semantic Hub**
- Fixed semantic hub data on click of filters and on click on refresh icon [#1273](https://github.com/eclipse-tractusx/portal-frontend/pull/1273)

Expand Down
4 changes: 2 additions & 2 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,9 @@ npm/npmjs/-/qs/6.13.0, BSD-3-Clause, approved, clearlydefined
npm/npmjs/-/querystringify/2.2.0, MIT, approved, clearlydefined
npm/npmjs/-/queue-microtask/1.2.3, MIT, approved, clearlydefined
npm/npmjs/-/react-dom/18.3.1, MIT, approved, clearlydefined
npm/npmjs/-/react-dropzone/14.2.3, MIT, approved, clearlydefined
npm/npmjs/-/react-dropzone/14.2.3, MIT, approved, #16858
npm/npmjs/-/react-fast-compare/3.2.2, MIT, approved, clearlydefined
npm/npmjs/-/react-hook-form/7.53.0, MIT, approved, clearlydefined
npm/npmjs/-/react-hook-form/7.53.0, MIT, approved, #16857
npm/npmjs/-/react-i18next/14.1.3, MIT AND Apache-2.0, approved, #13870
npm/npmjs/-/react-is/16.13.1, MIT, approved, clearlydefined
npm/npmjs/-/react-is/17.0.2, MIT, approved, clearlydefined
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const TechnicalUserTable = () => {
headerName: t('global.field.userType'),
flex: 1.2,
valueGetter: ({ row }: { row: ServiceAccountListEntry }) =>
row.usertype || '-',
row.userType || '-',
},
{
field: 'offer',
Expand Down
2 changes: 1 addition & 1 deletion src/features/admin/serviceApiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export interface ServiceAccountListEntry {
name: string
status: ServiceAccountStatus
isOwner?: boolean
usertype: string
userType: string
offer?: {
name?: string
}
Expand Down

0 comments on commit 7113d7d

Please sign in to comment.