Sort fetched tasks by name to display them sorted
For #152 (closed)
I considered doing the sorting where it is relevant (i.e. in TaskList
) but since it has a lot of states, I feared the amount of rerenders would lead to the sorting being called too often. So, I preferred to sort once and for all in the store instead.
Thoughts @bocciare ?