File tree 3 files changed +7
-9
lines changed
databases-collections/src/components/collection-fields
databases-collections-list/src
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ const FLEBadge = (): React.ReactElement => (
17
17
className = { collectionHeaderBadgeStyles }
18
18
variant = { BadgeVariant . DarkGray }
19
19
>
20
- { /* TODO(COMPASS-5626): use proper name instead of FLE2 */ }
21
- < Icon glyph = "Key" title = "FLE2 " size = "small" />
22
- FLE2
20
+ { /* Queryable Encryption is the user-facing name of FLE2 */ }
21
+ < Icon glyph = "Key" title = "Queryable Encryption " size = "small" />
22
+ Queryable Encryption
23
23
</ Badge >
24
24
) ;
25
25
Original file line number Diff line number Diff line change @@ -61,11 +61,9 @@ function collectionPropertyToBadge({
61
61
case 'timeseries' :
62
62
return { name, variant : 'darkgray' , icon : 'TimeSeries' } ;
63
63
case 'fle2' :
64
- return { name, variant : 'darkgray' , icon : 'Key' } ;
64
+ return { name : 'Queryable Encryption' , variant : 'darkgray' , icon : 'Key' } ;
65
65
case 'clustered' :
66
66
return { name, variant : 'darkgray' } ;
67
- case 'readonly' :
68
- return { name } ;
69
67
default :
70
68
return { name } ;
71
69
}
Original file line number Diff line number Diff line change @@ -71,11 +71,11 @@ function FLE2Fields({
71
71
toggled = { isFLE2 }
72
72
disabled = { isTimeSeries || isCapped }
73
73
onToggle = { checked => onChangeIsFLE2 ( checked ) }
74
- // TODO(COMPASS-5626): Use proper name instead of FLE2
75
- label = "FLE2 "
74
+ // Queryable Encryption is the user-facing name of FLE2
75
+ label = "Queryable Encryption "
76
76
dataTestId = "fle2-fields"
77
77
helpUrl = { HELP_URL_FLE2 }
78
- description = "FLE2 collections encrypt a subset of the fields using client-side encryption ."
78
+ description = "Encrypt a subset of the fields using Queryable Encryption ."
79
79
>
80
80
< FieldSet >
81
81
< Label htmlFor = "TODO(COMPASS-5653)" > Encrypted fields</ Label >
You can’t perform that action at this time.
0 commit comments