I have a code like this:
dv.header(2, 'Project');
dv.taskList(dv.pages().file.tasks
.where(t => !t.completed)
.where(t => t.text.includes("[[Project]]")), false )
with this result:
Could you please tell me how to remove Project from each task?
I want it to show without project, like this:
THANK YOU VERY MUCH!