fix(draw): correct embedded label padding

This commit is contained in:
Nico Rehwaldt 2018-09-20 21:57:10 +02:00
parent 31177b94e7
commit 90faab981d
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ export default function BpmnRenderer(
return renderLabel(parentGfx, semantic.name, { return renderLabel(parentGfx, semantic.name, {
box: element, box: element,
align: align, align: align,
padding: align === 'center-middle' ? 0 : 5, padding: 5,
style: { style: {
fill: getStrokeColor(element, defaultStrokeColor) fill: getStrokeColor(element, defaultStrokeColor)
} }