mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +00:00
fix: stop navigation to file on property click
This commit is contained in:
parent
4cabab0813
commit
a6ecb24e9e
1 changed files with 4 additions and 1 deletions
|
|
@ -20,7 +20,10 @@
|
|||
plugin = p;
|
||||
});
|
||||
|
||||
function handleClick() {
|
||||
function handleClick(e: Event) {
|
||||
//Don't click the card
|
||||
e.stopPropagation();
|
||||
|
||||
const searchPlugin = (plugin.app as any).internalPlugins.plugins[
|
||||
"global-search"
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue