Skip to content

Commit a474637

Browse files
roggenkemperclaude
andcommitted
feat(issue-detection): Add help text to AI detection sub-type toggles
Each per-category toggle now has a subtitle explaining what it controls (e.g., "Allow HTTP-related issues to be created"). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 46291d3 commit a474637

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,6 +1055,7 @@ export function ProjectPerformance() {
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'),
10581059
defaultValue: true,
10591060
disabled: !(
10601061
hasAccess &&
@@ -1066,6 +1067,7 @@ export function ProjectPerformance() {
10661067
name: DetectorConfigAdmin.AI_DETECTED_DB_ENABLED,
10671068
type: 'boolean' as const,
10681069
label: t('Database Issues'),
1070+
help: t('Allow database-related issues to be created'),
10691071
defaultValue: true,
10701072
disabled: !(
10711073
hasAccess &&
@@ -1077,6 +1079,7 @@ export function ProjectPerformance() {
10771079
name: DetectorConfigAdmin.AI_DETECTED_RUNTIME_PERFORMANCE_ENABLED,
10781080
type: 'boolean' as const,
10791081
label: t('Runtime Performance Issues'),
1082+
help: t('Allow runtime performance issues to be created'),
10801083
defaultValue: true,
10811084
disabled: !(
10821085
hasAccess &&
@@ -1088,6 +1091,7 @@ export function ProjectPerformance() {
10881091
name: DetectorConfigAdmin.AI_DETECTED_SECURITY_ENABLED,
10891092
type: 'boolean' as const,
10901093
label: t('Security Issues'),
1094+
help: t('Allow security-related issues to be created'),
10911095
defaultValue: true,
10921096
disabled: !(
10931097
hasAccess &&
@@ -1099,6 +1103,7 @@ export function ProjectPerformance() {
10991103
name: DetectorConfigAdmin.AI_DETECTED_CODE_HEALTH_ENABLED,
11001104
type: 'boolean' as const,
11011105
label: t('Code Health Issues'),
1106+
help: t('Allow code health issues to be created'),
11021107
defaultValue: true,
11031108
disabled: !(
11041109
hasAccess &&
@@ -1110,6 +1115,7 @@ export function ProjectPerformance() {
11101115
name: DetectorConfigAdmin.AI_DETECTED_GENERAL_ENABLED,
11111116
type: 'boolean' as const,
11121117
label: t('General Issues'),
1118+
help: t('Allow general issues to be created'),
11131119
defaultValue: true,
11141120
disabled: !(
11151121
hasAccess &&

0 commit comments

Comments
 (0)