The condition is trying to match an a element with a viewActions class and aria-label="Actions". However, this does not match, since the elements in the viewActions are of type button. At least, in my version of Obsidian (v1.6.7).
Changing a to button seems to fix the problem for me. To verify that, I made the change in .obsidian\plugins\typing\main.js on line 163363 of the installed plugin.
Closes #22
What is changed?
The condition is trying to match an
a
element with aviewActions
class andaria-label="Actions"
. However, this does not match, since the elements in the viewActions are of typebutton
. At least, in my version of Obsidian (v1.6.7).Changing
a
tobutton
seems to fix the problem for me. To verify that, I made the change in.obsidian\plugins\typing\main.js
on line163363
of the installed plugin.Before change:
After change: