vault backup: 2023-09-12 16:00:54

This commit is contained in:
2023-09-12 16:00:54 +02:00
parent a114ad46f3
commit 65a9f2910d

View File

@@ -2,8 +2,8 @@
``` ```
```dataviewjs ```dataviewjs
dv.table(["Link", "Relates to"], dv.table(["Note", "Relates to"],
dv.pages('"Notes" and #to-review') dv.pages('"Notes" and #to-review')
.sort(p => p.creation-date) .sort(p => -p["creation-date"])
.map(p => [p.file.link, p.relates-to])) .map(p => [p.file.link, p["relates-to"]]))
``` ```