🐛 Fix ordering when auto refreshing (#1761)

* Fix ordering when auto refreshing

* Fix ordering for current executinos as well
This commit is contained in:
Omar Ajoue
2021-05-12 17:51:54 +02:00
committed by GitHub
parent c632f7982f
commit c739a498f1
2 changed files with 5 additions and 3 deletions

View File

@@ -1732,6 +1732,7 @@ class App {
}
);
}
returnData.sort((a, b) => parseInt(b.id, 10) - parseInt(a.id, 10));
return returnData;
}