Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into enterprise-features
Browse files Browse the repository at this point in the history
  • Loading branch information
manjudr committed Nov 15, 2024
2 parents 09438fe + bdff17c commit 996ae2b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const AddPIIDialog = (props: any) => {
const [formData, setFormData] = useState<any>({
section: {
transformations: '',
transformationType: 'Mask',
transformationType: 'mask',
transformationMode: 'Strict',
}
});
Expand All @@ -66,8 +66,8 @@ const AddPIIDialog = (props: any) => {
const existingData = {
section: {
transformations: transformations,
transformationType: _.capitalize(_.get(data, ['transformationType'])),
transformationMode: _.capitalize(_.get(data, ['transformationMode']))
transformationType: (_.get(data, ['transformationType'])),
transformationMode: (_.get(data, ['transformationMode']))
}
};

Expand Down Expand Up @@ -188,8 +188,8 @@ const AddPIIDialog = (props: any) => {
onChange={handleRadioChange}
>
<Box display="flex">
<FormControlLabel value="Mask" control={<Radio />} label="Mask" />
<FormControlLabel value="Encrypt" control={<Radio />} label="Encrypt" />
<FormControlLabel value="mask" control={<Radio />} label="Mask" />
<FormControlLabel value="encrypt" control={<Radio />} label="Encrypt" />
</Box>
</RadioGroup>
</FormControl>
Expand Down

0 comments on commit 996ae2b

Please sign in to comment.