@bpmn-io/form-js-editor 1.9.1 → 1.9.2
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/index.cjs
CHANGED
|
@@ -1779,6 +1779,9 @@ class Dragging {
|
|
|
1779
1779
|
let targetParentId;
|
|
1780
1780
|
if (formFieldNode) {
|
|
1781
1781
|
formField = this._formFieldRegistry.get(formFieldNode.dataset.id);
|
|
1782
|
+
if (!formField) {
|
|
1783
|
+
return 'No associated form field in the registry';
|
|
1784
|
+
}
|
|
1782
1785
|
columns = (formField.layout || {}).columns;
|
|
1783
1786
|
|
|
1784
1787
|
// (1) check for row constraints
|