Skip to content

Commit

Permalink
fix(application-requests): fix data load (#1050)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-bmw authored Aug 28, 2024
1 parent 7fbb5f5 commit 49f1934
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

- **IDP management**
- Fixed statusTag color in status coloumn [#978](https://github.com/eclipse-tractusx/portal-frontend/pull/978)
- **Application Requests**
- Fixed 'activeTab' conditions to load data for Tab-2(Registration Process) [#1050](https://github.com/eclipse-tractusx/portal-frontend/pull/1050)

### Feature

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ const CompanyDetailOverlay = ({
) : (
<DialogContent
sx={{
padding: '30px 110px 56px 110px',
padding: activeTab === 0 ? '30px 110px 56px 110px' : '0px 120px',
width: '100%',
marginBottom: activeTab ? 5 : 0,
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function RegistrationRequests() {
setSelectedRequest(params.row)
dispatch(fetchCompanyDetail(params.row.applicationId))
setOverlayOpen(true)
setSelectedActiveTab(params.field === TableField.DETAIL ? 0 : 1)
setSelectedActiveTab(params.field === TableField.DETAIL ? 0 : 2)
}
}

Expand Down

0 comments on commit 49f1934

Please sign in to comment.