fix: stop navigation to file on property click

This commit is contained in:
DecafDev 2024-07-26 17:19:09 -06:00
parent 4cabab0813
commit a6ecb24e9e

View file

@ -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"
];