Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: introduced inreview filter for in the service overview #1218

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@
- enabled showing of appropriate error information to the user along with refetch button [#917](https://github.com/eclipse-tractusx/portal-frontend/pull/917)
- **Admin Board**:
- fixed role to hide admin board page for service manager [#937](https://github.com/eclipse-tractusx/portal-frontend/pull/937)
- **Service Overview Inreview filter**:
- Introduced filter of in-review in service overview page [#1218](https://github.com/eclipse-tractusx/portal-frontend/pull/1218)

### Known Knowns

Expand Down
3 changes: 2 additions & 1 deletion src/assets/locales/de/servicerelease.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@
"all": "Alle",
"active": "Aktiv",
"inactive": "Inaktiv",
"wip": "In Arbeit"
"wip": "In Arbeit",
"inreview": "wird überprüft"
},
"headerTitle": "Service Overview - Own managed service offers",
"inputPlaceholder": "Suchen Sie nach Services",
Expand Down
3 changes: 2 additions & 1 deletion src/assets/locales/en/servicerelease.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@
"all": "All",
"active": "Active",
"inactive": "Inactive",
"wip": "WIP"
"wip": "WIP",
"inreview": "Inreview"
},
"addbtn": "Register your Service",
"submenuNotAvailable": "Sub-Menu is not available.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ export default function ServiceListOverview() {
buttonValue: StatusIdEnum.Inactive,
onButtonClick: setView,
},
{
buttonText: t('serviceOverview.filter.inreview'),
buttonValue: StatusIdEnum.InReview,
onButtonClick: setView,
},
{
buttonText: t('serviceOverview.filter.wip'),
buttonValue: StatusIdEnum.WIP,
Expand Down
Loading