See the body of TaskManagementExample (Draggable) in the official docs.
It says
Note that the completed tasks are supposed to be listed in the reverse order of completion.
But the code is
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
Isn’t sort[created]
a mistake here? When we mark a task tiddler as done, it will add done
tag, which will change the modified
field, not the created
field?
It should be
<$list filter="[!has[draft.of]tag[task]tag[done]sort[modified]]">
Am I missing something here or is it a mistake in the docs?