Skip to content

Commit 4ca5ee9

Browse files
committed
fix frontend call and test
1 parent a53ec28 commit 4ca5ee9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

static/app/components/events/interfaces/debugMeta/debugImageDetails/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export function DebugImageDetails({
256256
);
257257
const hasReprocessWarning =
258258
haveCandidatesUnappliedDebugFile &&
259-
displayReprocessEventAction(organization.features, event) &&
259+
displayReprocessEventAction(event) &&
260260
!!onReprocessEvent;
261261

262262
if (isError) {

static/app/views/issueDetails/actions/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ export function Actions(props: Props) {
412412
{
413413
key: 'reprocess',
414414
label: t('Reprocess events'),
415-
hidden: !displayReprocessEventAction(organization.features, event),
415+
hidden: !displayReprocessEventAction(event),
416416
onAction: onReprocessEvent,
417417
},
418418
{

static/app/views/issueList/utils.spec.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ describe('getTabs', () => {
1313
['is:regressed', expect.objectContaining({name: 'Regressed'})],
1414
['is:escalating', expect.objectContaining({name: 'Escalating'})],
1515
['is:archived', expect.objectContaining({name: 'Archived'})],
16+
['is:reprocessing', expect.objectContaining({name: 'Reprocessing'})],
1617
]);
1718
});
1819

0 commit comments

Comments
 (0)