Merge master to develop

This commit is contained in:
bpmn-io-bot 2022-04-25 07:40:42 +00:00
commit b708a4d7af
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ export default function UpdateLabelHandler(modeling, textRenderer, bpmnFactory)
}
if (!text && di.label) {
di.label = null;
delete di.label;
}
}

View File

@ -247,7 +247,7 @@ describe('features/modeling - update label', function() {
// then
expect(task_2.businessObject.name).to.equal('');
expect(task_2.di.label).not.to.exist;
expect(task_2.di).not.to.have.property('label');
}));
});