Skip to content

Commit

Permalink
fix: introduced inreview filter for in the service overview (#1218)
Browse files Browse the repository at this point in the history
  • Loading branch information
Usmanfee authored Nov 14, 2024
1 parent 145f5d1 commit 296b21c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
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

0 comments on commit 296b21c

Please sign in to comment.