Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Mikkel Rasmussen <[email protected]>
  • Loading branch information
SET001 and BlackPhlox authored Nov 18, 2023
1 parent 558e4ae commit ea3e7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ let versions = [...new Set([...versionsQuery]
.filter(i => i)
.sort((a, b) => {
let a1 = a.split('.').map(i => i.padStart(3, '0')).join('');
let b1 = b.split('.').map(i => i.padStart(3, '0')).join('');;
let b1 = b.split('.').map(i => i.padStart(3, '0')).join('');
return b1 - a1;
})
)];
Expand Down

0 comments on commit ea3e7fb

Please sign in to comment.