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
Broken cell wrapping on rendering table with group by and multiple columns.
Same problem with mobile version.
If table has 3 columns (i.e. group, first, second) and second wraps content, firs still rendering raw by raw. So first column doesn't match it's value at second column/
DQL
TABLE rows.file.link as link, date(rows.file.frontmatter.verify_at) as "Verify at"
FROM "Projects"
WHERE status != null
and !contains(["Done", "Canceled"], status)
and date(verify_at) <= date(today)
GROUP BY status
JS
No response
Dataview Version
0.5.67
Obsidian Version
1.7.4
OS
Linux
The text was updated successfully, but these errors were encountered:
When you do GROUP BY you collate all matching elements into rows, and loose any connection originally present in the original file set. So if you present any of the rows.something lists, they're completely unassociated with other lists. This can't be helped in current version, and is so by design, as you might want to build various sets related to other criterias then a one-to-one matching.
To keep the original note corresponding, you can't use GROUP BY, but should rather just use SORT status and live with the repeated values (unless you do some mighty CSS (or javascript) stuff to hide repeated values).
What happened?
Broken cell wrapping on rendering table with group by and multiple columns.
Same problem with mobile version.
If table has 3 columns (i.e. group, first, second) and second wraps content, firs still rendering raw by raw. So first column doesn't match it's value at second column/
DQL
JS
No response
Dataview Version
0.5.67
Obsidian Version
1.7.4
OS
Linux
The text was updated successfully, but these errors were encountered: