fix(bpmnrenderer): set fill color of data associations to 'none'
close #68
This commit is contained in:
parent
e37bddf3a4
commit
97d1adeb8c
|
@ -1071,13 +1071,15 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
|
||||||
'bpmn:DataInputAssociation': function(p, data) {
|
'bpmn:DataInputAssociation': function(p, data) {
|
||||||
return drawLine(p, data.waypoints, {
|
return drawLine(p, data.waypoints, {
|
||||||
strokeDasharray: '2,4',
|
strokeDasharray: '2,4',
|
||||||
markerEnd: marker('data-association-end')
|
markerEnd: marker('data-association-end'),
|
||||||
|
fill: 'none'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
'bpmn:DataOutputAssociation': function(p, data) {
|
'bpmn:DataOutputAssociation': function(p, data) {
|
||||||
return drawLine(p, data.waypoints, {
|
return drawLine(p, data.waypoints, {
|
||||||
strokeDasharray: '2,4',
|
strokeDasharray: '2,4',
|
||||||
markerEnd: marker('data-association-end')
|
markerEnd: marker('data-association-end'),
|
||||||
|
fill: 'none'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
'bpmn:MessageFlow': function(p, data) {
|
'bpmn:MessageFlow': function(p, data) {
|
||||||
|
|
Loading…
Reference in New Issue