camunda-bpmn-js 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base-modeler.development.js +1 -1
- package/dist/base-modeler.production.min.js +1 -1
- package/dist/camunda-cloud-modeler.development.js +7 -5
- package/dist/camunda-cloud-modeler.production.min.js +2 -2
- package/dist/camunda-platform-modeler.development.js +1 -1
- package/dist/camunda-platform-modeler.production.min.js +1 -1
- package/package.json +5 -5
|
@@ -103425,7 +103425,7 @@
|
|
|
103425
103425
|
bo = getBusinessObject$1(newShape),
|
|
103426
103426
|
eventDefinitions = bo.get('eventDefinitions');
|
|
103427
103427
|
if (!eventDefinition) {
|
|
103428
|
-
return eventDefinitions.length
|
|
103428
|
+
return eventDefinitions.length !== 0;
|
|
103429
103429
|
}
|
|
103430
103430
|
return !is$5(eventDefinitions[0], eventDefinition);
|
|
103431
103431
|
}
|