Browse Source

fix(issues): Un-disable mark reviewed for mobile (#33915)

Scott Cooper 2 years ago
parent
commit
1af2a67663
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/issueList/actions/actionSet.tsx

+ 1 - 1
static/app/views/issueList/actions/actionSet.tsx

@@ -157,7 +157,7 @@ function ActionSet({
 
   const disabledMenuItems = [
     ...(mergeDisabled ? ['merge'] : []),
-    ...(canMarkReviewed ? ['mark-reviewed'] : []),
+    ...(canMarkReviewed ? [] : ['mark-reviewed']),
   ];
 
   return (