skit-ai / dagre-py

Thin python wrapper around dagre-d3
MIT License
14 stars 2 forks source link

Cant draw the node that node.id=0 and raise bug #4

Open renshareck opened 4 months ago

renshareck commented 4 months ago

/js/script.js line:38

script
if (node.id)

It takes bug when node.id==1

nodeid0

fix to

if ("id" in node)
lepisma commented 2 months ago

Thanks! This is fixed in 0.1.7. Check once and let me know?