Compare commits

...
Author SHA1 Message Date
iamsivin 28c7d13c15 chore: Minor fix 2026-01-15 14:07:45 +05:30
iamsivin 5caf3f5705 chore: Clean up 2026-01-15 13:47:05 +05:30
iamsivin 716a5b0dc3 fix: TypeError: can't access property "emitsOptions", r is null 2026-01-15 13:40:05 +05:30
@@ -148,7 +148,12 @@ const contextMenuActions = {
},
};
onBeforeMount(contextMenuActions.close);
// Reset context menu state on mount without emitting events
// to prevent event storm when multiple cards mount simultaneously
onBeforeMount(() => {
isContextMenuOpen.value = false;
contextMenuPosition.value = { x: null, y: null };
});
</script>
<template>