-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Milestone
Description
Time-entries list is currently displaying all the time entries in the current month ordered by start-date. When a new time-entry is created in a past date it is automatically added at the top of the list which is wrong. We should put it in the order it belongs to. For example, let's say you have these entries in the list:
05/01/2020 Xyz...
03/01/2020 Xyz...
01/01/2020 Xyz...
Then, you add a new one:
02/01/2010 Xyz...
The list looks like:
02/01/2020 Xyz...
05/01/2020 Xyz...
03/01/2020 Xyz...
01/01/2020 Xyz...
This is wrong, since the new value should be located in the third position of the list.