-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref(flags): split FF settings into eval/change tracking (#86070)
Figma: [settings page v2](https://www.figma.com/design/xZ22Ox8OqhKVkJB2TGi1Vo/Specs%3A-Settings-Page-v2?node-id=2033-3118&p=f&m=dev) Closes getsentry/team-replay#544 https://github.com/user-attachments/assets/ccfc4b18-0f9e-45ac-8b09-0be2ebb62f4f Updated flyout:  New Change Tracking link takes you to change tracking settings.
- Loading branch information
Showing
21 changed files
with
382 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
static/app/components/events/featureFlags/onboardingAdditionalInfo.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import {Fragment} from 'react'; | ||
|
||
import Link from 'sentry/components/links/link'; | ||
import {t, tct} from 'sentry/locale'; | ||
import type {Organization} from 'sentry/types/organization'; | ||
|
||
export default function OnboardingAdditionalFeatures({ | ||
organization, | ||
}: { | ||
organization: Organization; | ||
}) { | ||
return ( | ||
<Fragment> | ||
<h4 style={{marginTop: '40px'}}>{t('Additional Features')}</h4> | ||
{tct( | ||
'[link:Change Tracking]: Configure Sentry to listen for additions, removals, and modifications to your feature flags.', | ||
{ | ||
link: ( | ||
<Link to={`/settings/${organization.slug}/feature-flags/change-tracking/`} /> | ||
), | ||
} | ||
)} | ||
</Fragment> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.