INFRA-3481 | Ankit Bhardwaj | change DisableDRBackup to Disaster Recovery on frontend (#606)

This commit is contained in:
Ankit Bhardwaj Bhardwaj
2024-06-24 13:16:00 +05:30
committed by GitHub
parent 45a16f5c77
commit e150e49c8a
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ const BucketMetadata = (props: {
<FormikTextField
autoFocus
className={useStyles().field}
label="Disable Disaster Recovery for S3 bucket"
label="Disaster Recovery Required for S3 bucket"
name={`${s3Bucket}.metadata.DisableDRBackup`}
disabled={disableFields}
select

View File

@@ -13,8 +13,8 @@ export const dataSensitivityMap = [
];
export const disasterRecovery = [
{ description: 'No', value: 'False' },
{ description: 'Yes', value: 'True' },
{ description: 'Yes', value: 'False' },
{ description: 'No', value: 'True' },
];
export const S3StorageClassOptions = ['STANDARD', 'ONEZONE_IA', 'INTELLIGENT_TIERING'];