Browse Source

feat(ui): Add link to early adopter setting (#44784)

Evan Purkhiser 2 years ago
parent
commit
6a42271747
1 changed files with 7 additions and 2 deletions
  1. 7 2
      static/app/data/forms/organizationGeneralSettings.tsx

+ 7 - 2
static/app/data/forms/organizationGeneralSettings.tsx

@@ -1,5 +1,6 @@
 import {JsonFormObject} from 'sentry/components/forms/types';
-import {t} from 'sentry/locale';
+import ExternalLink from 'sentry/components/links/externalLink';
+import {t, tct} from 'sentry/locale';
 import {MemberRole} from 'sentry/types';
 import slugify from 'sentry/utils/slugify';
 
@@ -35,7 +36,11 @@ const formGroups: JsonFormObject[] = [
         name: 'isEarlyAdopter',
         type: 'boolean',
         label: t('Early Adopter'),
-        help: t("Opt-in to new features before they're released to the public"),
+        help: tct("Opt-in to [link:new features] before they're released to the public", {
+          link: (
+            <ExternalLink href="https://docs.sentry.io/product/accounts/early-adopter/" />
+          ),
+        }),
       },
     ],
   },