This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
macrovision
Watch
1
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
10
Wiki
Activity
Browse Source
Fix Pokemon not quite being sorted
tags/v0.1.0
Fen Dweller
5 years ago
parent
6d2994f5b4
commit
a536971c02
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
presets/pokemon.js
+ 4
- 1
presets/pokemon.js
View File
@@ -40826,5 +40826,8 @@ function makePokemon() {
constructor: value
});
});
return results;
return results.sort((a, b) => {
return a.name.localeCompare(b.name);
});
}
Write
Preview
Loading…
Cancel
Save