Braks
Braks
This is expected behavior though. When you select a node its z-index gets increased (so it moves to the "top") - when it's unselected (clicking another node or the "canvas"),...
@delphi-sucks might be 😅 I haven't investigated this recently since I'm focusing more on getting prepared for v2
@aryankarim Btw, does this even happen on any other flow besides the "Hero" flow on the vueflow docs? That one has some listener for size changes which might just be...
Thank you for the response! :) I suspect there was something wonky going on with the breakpoint calculation that was done in the hero flow(s). Will be closing this then.
@raarts FYI: Custom Nodes receive `xPos` and `yPos` as props so you should be able to fetch the coordinates from there pretty easily :) ```ts // props that get passed...
There already is an `updateEdge` utility that updates an edge from one Node to another 🥲 Wouldn't it be confusing to have two utilities with the same naming?
Don't mutate objects in your setter function, that's where the issue comes from. Replace this ```ts if (edge.id === "e1-2") { edge.markerStart = markerStart; } ``` with this ```ts if...
The sandbox I linked seems to work completely fine. I open the sandbox, click the checkbox and see a red marker appearing without having to click/drag or do anything at...
Mh... what browser is that? Chrome?
Interesting, in Chrome it doesn't work but in FF it does 😄 Seems to be a bug somewhere, that's strange