Help. Dataview: Group Lists (no tasks)

What I’m trying to do

I want to Group Lists (no tasks) by file.link. I have this dataviewjs code:

for (let group of dv.pages('"Fleeting Notes" and -#bidireccional').groupBy(p => p.file.link)) 
{ dv.header(4, group.key); 
dv.list(group.rows.file.lists.where(t => t.task != true).text) } 

It’s works but, I don’t wanna see empty files (no lists contents) like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.