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
3 changes: 3 additions & 0 deletions static/app/views/settings/projectIssueGrouping/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,8 @@ describe('projectIssueGrouping', () => {

// Verify the section is visible for superuser
expect(screen.getByText(/Derived Grouping Enhancements/)).toBeInTheDocument();
expect(
screen.getByRole('textbox', {name: /Derived Grouping Enhancements/})
).toBeDisabled();
});
});
1 change: 1 addition & 0 deletions static/app/views/settings/projectIssueGrouping/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export default function ProjectIssueGrouping({organization, project, params}: Pr
{...jsonFormProps}
title={t('Derived Grouping Enhancements')}
fields={[fields.derivedGroupingEnhancements]}
disabled
/>
)}
</Form>
Expand Down
Loading