Yeah that’s what we discussed before in another post. It’s a bug.
But if you are adding some random item at the start of the list as a workaround for the bug, you can adjust the query to retrieve only the list items with a word
, by adding WHERE L.word
:
Note:
1. My list of words:
2. (word::**one**): (definition:: Word definition).
3. (word::**two**): (definition:: Word definition).
4. (word::**three**): (definition:: Word definition).
Query:
```dataview
LIST WITHOUT ID L.word + ": " + L.definition
FROM "Words"
FLATTEN file.lists as L
WHERE L.word
SORT L.word ASC
```
Output
- one: Word definition
- three: Word definition
- two: Word definition
Please remember to mark a post as a solution if you think your question was solved. Thanks.