mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 05:28:13 +00:00
Poprawka sortowania listy rozkazów
This commit is contained in:
@@ -58,7 +58,7 @@ export default defineComponent({
|
||||
|
||||
computed: {
|
||||
sortedOrderList() {
|
||||
return this.localOrderList.sort((a, b) => a.createdAt - b.createdAt);
|
||||
return this.localOrderList.sort((a, b) => b.createdAt - a.createdAt);
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user