Fix Links.vue checking startNode twice instead of both nodes
Thanks escapee for reporting the issue!
This commit is contained in:
parent
9debfe6fb4
commit
2b861c3fcf
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ onMounted(() => (boundingRect.value = resizeListener.value?.getBoundingClientRec
|
|||
const validLinks = computed(() => {
|
||||
const n = nodes.value;
|
||||
return (
|
||||
links.value?.filter(link => n[link.startNode.id]?.rect && n[link.startNode.id]?.rect) ?? []
|
||||
links.value?.filter(link => n[link.startNode.id]?.rect && n[link.endNode.id]?.rect) ?? []
|
||||
);
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue