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
If you drag and drop a note to be open in the sideview, the dataview queries will stop updating. They don't stop updating completely though, seemingly frozen on the day boundaries.
To repro, use any of the queries below and move the note to the sidebar. It will function, but will break on the next day, seemingly indicated the date() function doesn't work properly in the sidebar.
DQL
`$= dv.pages('"test"').length`
will rerender at all times
TASK
WHERE !fullyCompleted
AND file.day < date(today)
GROUP BY file.link
is seemingly stuck on the day when the note was opened (i.e. not progressing over days
LIST
WHERE
created != nil
AND created.year = date(today).year
AND created.month= date(today).month
AND created.day= date(today).day
is stuck in a similar way.
JS
Dataview Version
0.5.67
Obsidian Version
1.8.9
OS
MacOS
The text was updated successfully, but these errors were encountered:
I do believe executing the command Dataview: Rebuild current view also should work. Even I got that command assigned to a hotkey for the occasional updating of a stale query.
What happened?
If you drag and drop a note to be open in the sideview, the dataview queries will stop updating. They don't stop updating completely though, seemingly frozen on the day boundaries.
To repro, use any of the queries below and move the note to the sidebar. It will function, but will break on the next day, seemingly indicated the
date()
function doesn't work properly in the sidebar.DQL
will rerender at all times
is seemingly stuck on the day when the note was opened (i.e. not progressing over days
is stuck in a similar way.
JS
Dataview Version
0.5.67
Obsidian Version
1.8.9
OS
MacOS
The text was updated successfully, but these errors were encountered: