Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ const formGroups: JsonFormObject[] = [
{
name: 'storeCrashReports',
type: 'select',
label: t('Store Native Crash Reports'),
label: t('Store Minidumps As Attachments'),
help: t(
'Store native crash reports such as Minidumps for improved processing and download in issue details'
'Store minidumps as attachments for improved processing and download in issue details.'
),
visible: ({features}) => features.has('event-attachments'),
// HACK: some organization can have limit of stored crash reports a number that's not in the options (legacy reasons),
Expand Down
4 changes: 2 additions & 2 deletions static/app/data/forms/projectSecurityAndPrivacyGroups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ const formGroups: JsonFormObject[] = [
{
name: 'storeCrashReports',
type: 'select',
label: t('Store Native Crash Reports'),
label: t('Store Minidumps As Attachments'),
help: ({organization}) =>
tct(
'Store native crash reports such as Minidumps for improved processing and download in issue details. Overrides [organizationSettingsLink: organization settings].',
'Store minidumps as attachments for improved processing and download in issue details. Overrides [organizationSettingsLink: organization settings].',
{
organizationSettingsLink: (
<Link to={`/settings/${organization.slug}/security-and-privacy/`} />
Expand Down
Loading