Skip to content

Commit

Permalink
Merge pull request #541 from odisha-muktasoft/skill-localisation
Browse files Browse the repository at this point in the history
added localisation in the skills of wageseekers
  • Loading branch information
Tulika-eGov authored Jul 15, 2024
2 parents 156fe62 + 922a8b6 commit 15c81dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@egovernments/digit-ui-module-contracts": "0.4.2",
"@egovernments/digit-ui-module-measurement":"0.2.0",
"@egovernments/digit-ui-module-estimate": "0.4.5",
"@egovernments/digit-ui-module-masters": "0.4.2",
"@egovernments/digit-ui-module-masters": "0.4.3",
"@egovernments/digit-ui-module-project": "0.4.1",
"@egovernments/digit-ui-module-expenditure": "0.4.1",
"@egovernments/digit-ui-customisation-mukta": "0.2.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-module-masters",
"version": "0.4.2",
"version": "0.4.3",
"description": "Masters Module UI",
"main": "dist/index.js",
"module": "dist/index.modern.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const requestCriteria = {
moduleDetails : [

{
// "moduleName": options?.moduleName,
"moduleName": "WORKS-SOR",
"masterDetails": [
{
Expand All @@ -57,7 +56,7 @@ const requestCriteria = {
config: {
select: (data) => {
const optionsData = _.get(data?.MdmsRes, `${"WORKS-SOR"}.${"SOR"}`, []);
return optionsData?.filter((opt) => opt?.active === undefined || opt?.active === true).map((opt) => ({name: opt?.description, code: opt?.id}));
return optionsData?.filter((opt) => opt?.active === undefined || opt?.active === true).map((opt) => ({name: `${t(opt?.sorSubType)} - ${opt?.description}`, code: opt?.id}));
}
},
};
Expand Down
2 changes: 1 addition & 1 deletion frontend/micro-ui/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@egovernments/digit-ui-module-contracts": "0.4.2",
"@egovernments/digit-ui-module-measurement":"0.2.0",
"@egovernments/digit-ui-module-estimate": "0.4.5",
"@egovernments/digit-ui-module-masters": "0.4.2",
"@egovernments/digit-ui-module-masters": "0.4.3",
"@egovernments/digit-ui-module-project": "0.4.1",
"@egovernments/digit-ui-module-expenditure": "0.4.1",
"@egovernments/digit-ui-customisation-mukta": "0.2.1",
Expand Down

0 comments on commit 15c81dc

Please sign in to comment.