Hello Everyone,
What I’m trying to do
I am relatively new to obsidian and I am dialing in my own daily notes. I’ve recently added dataview and metadata menu to edit my YAML within dataview. Once I’ve added metadata menu with dataview, I noticed that when I’m scrolling through my daily notes or typing it randomly jumps to the bottom of the page (where the dataview are).
Is there a way to solve this as I want to type my notes smoothly without it jumping to the bottom?
here is a sample query from dataview
const {fieldModifier: f} =
this.app.plugins.plugins["metadata-menu"].api;
dv.table(['wash face','brush teeth','shower'], //YAML title
dv.pages("#dailymdm")
.filter(p => p.file.path.includes("2023-07-10"))
.filter(p => !p.file.path.includes('templates'))
.map(p => [ //title name
f(dv, p, "wash face"),
f(dv, p, "brush teeth"),
f(dv, p, "shower"),
])
)
Things I have tried
I’ve tried enabling and disabling the plugin’s as well as changing the update speed, all the basic stuff but can’t seem to find a solution.