diff --git a/packages/form-js-viewer/src/core/FieldFactory.js b/packages/form-js-viewer/src/core/FieldFactory.js index df4b2714e..499b3a914 100644 --- a/packages/form-js-viewer/src/core/FieldFactory.js +++ b/packages/form-js-viewer/src/core/FieldFactory.js @@ -88,13 +88,11 @@ export class FieldFactory { this._enforceDefaultPath(field); } - if (field.path) { - this._pathRegistry.claimPath(this._pathRegistry.getValuePath(field), { - isRepeatable: config.repeatable, - claimerId: field.id, - knownAncestorIds: getAncestryList(_parent, this._formFieldRegistry), - }); - } + this._pathRegistry.claimPath(this._pathRegistry.getValuePath(field), { + isRepeatable: config.repeatable, + claimerId: field.id, + knownAncestorIds: getAncestryList(_parent, this._formFieldRegistry), + }); } return field;