Skip to content

Commit 527d7e3

Browse files
roggenkemperclaude
andcommitted
fix(issue-detection): Fix parent toggle rendering and clean up help text
Use plain string for section title to match admin field map key so the parent toggle renders in the section header. Remove hyphens from help text. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 719651f commit 527d7e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

static/app/views/settings/projectPerformance/projectPerformance.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,13 +1049,13 @@ export function ProjectPerformance() {
10491049
initiallyCollapsed: issueType !== IssueType.WEB_VITALS,
10501050
},
10511051
{
1052-
title: t('AI Issue Detection'),
1052+
title: 'AI Issue Detection',
10531053
fields: [
10541054
{
10551055
name: DetectorConfigAdmin.AI_DETECTED_HTTP_ENABLED,
10561056
type: 'boolean' as const,
10571057
label: t('HTTP Issues'),
1058-
help: t('Allow HTTP-related issues to be created'),
1058+
help: t('Allow HTTP issues to be created'),
10591059
defaultValue: true,
10601060
disabled: !(
10611061
hasAccess &&
@@ -1067,7 +1067,7 @@ export function ProjectPerformance() {
10671067
name: DetectorConfigAdmin.AI_DETECTED_DB_ENABLED,
10681068
type: 'boolean' as const,
10691069
label: t('Database Issues'),
1070-
help: t('Allow database-related issues to be created'),
1070+
help: t('Allow database issues to be created'),
10711071
defaultValue: true,
10721072
disabled: !(
10731073
hasAccess &&
@@ -1091,7 +1091,7 @@ export function ProjectPerformance() {
10911091
name: DetectorConfigAdmin.AI_DETECTED_SECURITY_ENABLED,
10921092
type: 'boolean' as const,
10931093
label: t('Security Issues'),
1094-
help: t('Allow security-related issues to be created'),
1094+
help: t('Allow security issues to be created'),
10951095
defaultValue: true,
10961096
disabled: !(
10971097
hasAccess &&

0 commit comments

Comments
 (0)