Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Oct 2, 2023
1 parent 7d44fff commit 235f258
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion report/renderer/performance-category-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ export class PerformanceCategoryRenderer extends CategoryRenderer {
? 100
: Number(a.auditRef.result.score);
const scoreB = b.auditRef.result.scoreDisplayMode === 'informative'
? 100 : Number(b.auditRef.result.score);
? 100
: Number(b.auditRef.result.score);
return scoreA - scoreB;
});

Expand Down

0 comments on commit 235f258

Please sign in to comment.