diff --git a/opentech/static_src/src/app/src/containers/ReviewInformation.js b/opentech/static_src/src/app/src/containers/ReviewInformation.js index 02ddf9d854ebe090bd081ae1a99f99ef13b8b973..2f0bfad65296aae2fe16aadaf1b17641b16aa74a 100644 --- a/opentech/static_src/src/app/src/containers/ReviewInformation.js +++ b/opentech/static_src/src/app/src/containers/ReviewInformation.js @@ -34,6 +34,8 @@ const ReviewInformation = ({ submission }) => { people.sort((a,b) => { if (a.role.order === null) { return 100; + } else if (b.role.order === null) { + return -1; } return a.role.order - b.role.order; })