File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -302,6 +302,7 @@ export function buildMmSubmissionData(reviewSummations = []) {
302302
303303 const normalizedScore = normalizeScoreValue ( _ . get ( summation , 'aggregateScore' ) ) ;
304304 const isProvisional = Boolean ( summation . isProvisional ) ;
305+ const isLatest = _ . isNil ( summation . isLatest ) ? true : Boolean ( summation . isLatest ) ;
305306
306307 const updatedEntry = updateSubmissionEntry ( memberEntry . submissionsMap . get ( submissionId ) , {
307308 submissionId,
@@ -314,7 +315,7 @@ export function buildMmSubmissionData(reviewSummations = []) {
314315
315316 memberEntry . submissionsMap . set ( submissionId , updatedEntry ) ;
316317
317- if ( ! _ . isNil ( normalizedScore ) ) {
318+ if ( ! _ . isNil ( normalizedScore ) && isLatest ) {
318319 if ( isProvisional ) {
319320 memberEntry . bestProvisionalScore = _ . isNil ( memberEntry . bestProvisionalScore )
320321 ? normalizedScore
You can’t perform that action at this time.
0 commit comments