joyceworks / flowchart-vue

Flowchart & designer component for Vue.js.
MIT License
345 stars 75 forks source link

Title render on task fails (px missing) #5

Closed thomas-trendsoft closed 4 years ago

thomas-trendsoft commented 4 years ago

Hey nice work first ;) i noticed that the task node titles are not rendered correctly. the rect is not given a style (width/height).

to reproduce you can have a look at the demo.

i think the missing part ist on flowchart component at line 86 current: style('width', node.width); should be: style('width', node.width + 'px').style('height','20px');