Skip to content

Commit 17b606f

Browse files
authored
FEATURE/HCMPRE-2661 : added schema code (#2376)
FEATURE/HCMPRE-2661
1 parent 37f624d commit 17b606f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/pages/employee/NewCampaignCreate/AppModule.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const AppModule = () => {
1717
select: (data) => {
1818
return data?.[CONSOLE_MDMS_MODULENAME]?.AppModuleSchema;
1919
},
20-
}
20+
},
21+
{ schemaCode: `${"CONSOLE_MDMS_MODULENAME"}.AppModuleSchema` }
2122
);
2223

2324

health/micro-ui/web/micro-ui-internals/packages/modules/campaign-manager/src/pages/employee/SetupCampaign.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ const SetupCampaign = React.memo(({ hierarchyType, hierarchyData }) => {
899899
}
900900
if(isSubmit){
901901
setShouldUpdate(true);
902-
if(currentKey == 6 || currentKey == 9 || currentKey == 16){
902+
if(currentKey == 6 || currentKey == 9 || currentKey == 15){
903903
history.push(`/${window.contextPath}/employee/campaign/view-details?campaignNumber=${campaignNumber}`);
904904
}
905905
return ;

0 commit comments

Comments
 (0)