Fix sorting of tasks in lists (#37)

This commit is contained in:
konrad 2018-12-19 19:14:48 +00:00 committed by Gitea
parent 79b463d0af
commit 3e4f7fb2f4
1 changed files with 9 additions and 1 deletions

View File

@ -18,6 +18,7 @@ package models
import (
"code.vikunja.io/web"
"sort"
)
// ListTask represents an task in a todolist
@ -64,7 +65,7 @@ func GetTasksByListID(listID int64) (tasks []*ListTask, err error) {
}
// make a map so we can put in subtasks more easily
taskMap := make(map[int64]*ListTask)
taskMap := make(map[int64]*ListTask, len(tasks))
// Get all users and put them into the array
var userIDs []int64
@ -114,6 +115,13 @@ func GetTasksByListID(listID int64) (tasks []*ListTask, err error) {
tasks = append(tasks, t)
}
// Sort the output. In Go, contents on a map are put on that map in no particular order.
// Because of this, tasks are not sorted anymore in the output, this leads to confiusion.
// To avoid all this, we need to sort the slice afterwards
sort.Slice(tasks, func(i, j int) bool {
return tasks[i].ID < tasks[j].ID
})
return
}