Bug report - rendering tasks with inline fields
See original GitHub issueWhat happened?
I take notes across multiple files, and I gather up “agenda” tasks for a given person by assigning an inline field on the task like so:
- [ ] This is a made up task [person::[[Joe Bloggs]]]
Every so often, the rendering is off, and I end up with something like the attached image:
(see the dodgy tag/field at the start?)
DQL
No response
JS
const people = dv.pages().file.tasks.distinct(t => t.person).person
if (people.length > 0) {
dv.header(2, "Follow Ups")
for (let p of people) {
let tasks = dv.pages().file.tasks.filter(t => !t.fullyCompleted && dv.equal(t.person, p))
if (tasks.length > 0) {
dv.header(4, p)
dv.taskList(tasks, false)
}
}
}
Dataview Version
0.4.21
Obsidian Version
0.12.19
OS
Linux
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
New Inline Field Highlighting · Issue #544 - GitHub
Describe the bug With the new feature enable, no colors are applied. To Reproduce Steps to reproduce the behavior: Add inline fields to...
Read more >Issues for Inline Form Errors | Drupal.org
Title Status Priority
Release of stable version Active Normal
Restore getter function for element errors Needs work Normal
Add support for reCaptcha Postponed (maintainer needs more...
Read more >Inline `code` markdown doesn't render correctly in bug ...
When entering inline code in markdown in a bug/issue discussion (e.g. "We need to refactor `DocFactoryFactoryInstance` to support `Cat` objects without ...
Read more >Enable inline editing in lists
Enable inline editing for legacy workspace lists so that you can inline edit one or multiple cells in a list column.
Read more >How to Report Errors in Forms: 10 Design Guidelines
With inline validation, the error message is naturally shown next to the field causing the error. But even when the fields are not...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
FWIW I’ve not seen this for a few weeks, so seems solved in later versions, but HazmatDrone might have other experience.
I should’ve mentioned; I was running Obsidian
0.14.15
with DataView0.4.26
on Linux at the time of commenting. Updating DataView to0.5.38
has fixed the issue; thank you.