Skip to content

Commit

Permalink
fix(semantic hub): fix filters (#1273)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-bmw authored Oct 24, 2024
1 parent 231c2d1 commit 713f8a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

- **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)

## 2.3.0-alpha.3

Expand Down
8 changes: 7 additions & 1 deletion src/components/pages/SemanticHub/ModelTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,13 @@ const ModelTable = ({ onModelSelect }: ModelTableProps) => {
error={errorObj}
reload={() =>
dispatch(
fetchSemanticModels({ filter: { page: 0, pageSize: rowCount } })
fetchSemanticModels({
filter: {
page: 0,
pageSize: rowCount,
status: selectedFilter.status[0],
},
})
)
}
noRowsMsg={t('global.noData.heading')}
Expand Down

0 comments on commit 713f8a5

Please sign in to comment.