Skip to content

Commit

Permalink
#2612 Fix SubmissionsListItem review stage check for Internal Review
Browse files Browse the repository at this point in the history
  • Loading branch information
NateWr committed Aug 14, 2017
1 parent 0e474c3 commit b21da8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/controllers/list/submissions/SubmissionsListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export default {
* @return bool
*/
isReviewStage: function() {
return this.activeStage.id === 3;
return this.activeStage.id === 2 || this.activeStage.id === 3;
},
/**
Expand Down

0 comments on commit b21da8f

Please sign in to comment.