Skip to content

Commit

Permalink
Merge pull request #319 from AkshataKatwal16/relese-changes
Browse files Browse the repository at this point in the history
Issue feat PS-2466: Fix User not getting updated issue
  • Loading branch information
itsvick authored Nov 14, 2024
2 parents ddf9d0d + ef08028 commit f9afdaa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/UserTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -684,9 +684,9 @@ console.log(code[0])
if (data[item.name] && item?.maxSelections > 1) {
return [field?.value];
} else if (item?.type === "checkbox") {
return String(field?.value).split(",");
return String(field?.code).split(",");
} else {
return field?.value?.toLowerCase();
return field?.code?.toLowerCase();
}
} else {
if (item?.type === "numeric") {
Expand Down Expand Up @@ -1522,7 +1522,6 @@ console.log(selectedBlockStore)
);


console.log("data-----------------------------", data)
const userProps = {
userType: userType,
searchPlaceHolder: searchPlaceholder,
Expand Down

0 comments on commit f9afdaa

Please sign in to comment.