Skip to content

Commit

Permalink
pr resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
NabeelAyubee committed Sep 9, 2024
1 parent 60c4861 commit 4545c04
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ const SetupMaster = () => {
[{ name: "ModuleMasterConfig" }],
{
select: (data) => {
let xx = data?.["sandbox-ui"]?.ModuleMasterConfig?.filter((item) => item?.module === module)?.[0]?.master;
let xx = data?.["sandbox-ui"]?.ModuleMasterConfig?.filter((item) => item?.module === module)?.[0]?.master?.filter(
(item) => item.type === "module" || item.type === "common" || item.type === "boundary"
);
let respData = xx.map((i) => ({
masterName: t(i.code),
type: t(i.type),
Expand Down

0 comments on commit 4545c04

Please sign in to comment.