diff --git a/src/components/tasks/ShowTasks.vue b/src/components/tasks/ShowTasks.vue index cdf047d5c6..1baad5a88c 100644 --- a/src/components/tasks/ShowTasks.vue +++ b/src/components/tasks/ShowTasks.vue @@ -62,7 +62,7 @@ }, methods: { loadPendingTasks() { - let params = {sort_by: 'due_date_unix', order_by: 'desc'} + let params = {sort_by: ['due_date_unix', 'id'], order_by: ['desc', 'desc']} if (!this.showAll) { params.startdate = Math.round(+ this.startDate / 1000) params.enddate = Math.round(+ this.endDate / 1000)