diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block-grid/property-editors/block-grid-editor/property-editor-ui-block-grid.element.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block-grid/property-editors/block-grid-editor/property-editor-ui-block-grid.element.ts index 57c11096d4..0c597e5ded 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/block/block-grid/property-editors/block-grid-editor/property-editor-ui-block-grid.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/block/block-grid/property-editors/block-grid-editor/property-editor-ui-block-grid.element.ts @@ -132,7 +132,9 @@ export class UmbPropertyEditorUIBlockGridElement this.removeFormControlElement(this.#currentEntriesElement as any); } this.#currentEntriesElement = element; - this.addFormControlElement(element as any); + if (element) { + this.addFormControlElement(element as any); + } } override render() {