Poprawka sortowania listy rozkazów

This commit is contained in:
2022-07-22 14:18:28 +02:00
parent 7bc722087f
commit 55a546fefe
+1 -1
View File
@@ -58,7 +58,7 @@ export default defineComponent({
computed: { computed: {
sortedOrderList() { sortedOrderList() {
return this.localOrderList.sort((a, b) => a.createdAt - b.createdAt); return this.localOrderList.sort((a, b) => b.createdAt - a.createdAt);
}, },
}, },