File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
components/events/interfaces/debugMeta/debugImageDetails Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ export function DebugImageDetails({
256
256
) ;
257
257
const hasReprocessWarning =
258
258
haveCandidatesUnappliedDebugFile &&
259
- displayReprocessEventAction ( organization . features , event ) &&
259
+ displayReprocessEventAction ( event ) &&
260
260
! ! onReprocessEvent ;
261
261
262
262
if ( isError ) {
Original file line number Diff line number Diff line change @@ -412,7 +412,7 @@ export function Actions(props: Props) {
412
412
{
413
413
key : 'reprocess' ,
414
414
label : t ( 'Reprocess events' ) ,
415
- hidden : ! displayReprocessEventAction ( organization . features , event ) ,
415
+ hidden : ! displayReprocessEventAction ( event ) ,
416
416
onAction : onReprocessEvent ,
417
417
} ,
418
418
{
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ describe('getTabs', () => {
13
13
[ 'is:regressed' , expect . objectContaining ( { name : 'Regressed' } ) ] ,
14
14
[ 'is:escalating' , expect . objectContaining ( { name : 'Escalating' } ) ] ,
15
15
[ 'is:archived' , expect . objectContaining ( { name : 'Archived' } ) ] ,
16
+ [ 'is:reprocessing' , expect . objectContaining ( { name : 'Reprocessing' } ) ] ,
16
17
] ) ;
17
18
} ) ;
18
19
You can’t perform that action at this time.
0 commit comments