Manual fixes

This commit is contained in:
Adam Stachowicz 2021-07-27 19:53:59 +02:00
parent 9648d700d7
commit 4c8fdd07d9
15 changed files with 15 additions and 41 deletions

View file

@ -146,7 +146,9 @@ export default {
result.sort((a, b) => {
if (a.time > b.time) {
return -1;
} if (a.time < b.time) {
}
if (a.time < b.time) {
return 1;
}