Browse Source

ref(pii): Document `**` selector better (#67419)

The "everywhere" wording caused confusion, it does not scrub everywhere
only in default PII enabled fields.
David Herberth 11 months ago
parent
commit
a4d63120cb
1 changed files with 5 additions and 1 deletions
  1. 5 1
      static/app/views/settings/components/dataScrubbing/utils.tsx

+ 5 - 1
static/app/views/settings/components/dataScrubbing/utils.tsx

@@ -84,7 +84,11 @@ const unarySuggestions: Array<SourceSuggestion> = [
 ];
 
 const valueSuggestions: Array<SourceSuggestion> = [
-  {type: SourceSuggestionType.VALUE, value: '**', description: t('everywhere')},
+  {
+    type: SourceSuggestionType.VALUE,
+    value: '**',
+    description: t('all default PII fields'),
+  },
   {
     type: SourceSuggestionType.VALUE,
     value: 'password',