fix(edges): pass markers to correct attributes
This commit is contained in:
@@ -36,11 +36,11 @@ const BaseEdge: FunctionalComponent<Props> = function ({
|
|||||||
}) {
|
}) {
|
||||||
return [
|
return [
|
||||||
h('path', {
|
h('path', {
|
||||||
style: { ...style },
|
'style': { ...style },
|
||||||
d: path,
|
'd': path,
|
||||||
class: 'vue-flow__edge-path',
|
'class': 'vue-flow__edge-path',
|
||||||
markerEnd,
|
'marker-end': markerEnd,
|
||||||
markerStart,
|
'marker-start': markerStart,
|
||||||
}),
|
}),
|
||||||
label
|
label
|
||||||
? h(EdgeText, {
|
? h(EdgeText, {
|
||||||
|
|||||||
Reference in New Issue
Block a user