You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's consider the following datacore query and it's equivalent in dataview:
Datacore:
constCOLUMNS=[{id: "text",value: (task)=>task.$text},];returnfunctionView(){consttasks=dc.useQuery("@task and #test");return<dc.Tablecolumns={COLUMNS}rows={tasks}/>;}
Dataview
TASK
FROM #test
I found that If there is no newline before a task, datacore seems to ignores the task!
A text before the task
-[ ] test #test ⏳ 2025-10-09
On the other hand, if I add a newline, datacore works as expected
A text before the task
-[ ] test #test ⏳ 2025-10-09