remove .contentUdi

This commit is contained in:
Niels Lyngsø
2024-07-05 13:08:41 +02:00
parent 7d67b9b700
commit 07c85259a2

View File

@@ -319,13 +319,11 @@ export class UmbBlockGridEntryElement extends UmbLitElement implements UmbProper
};
#renderInlineEditBlock() {
return html`<umb-block-grid-block-inline
.contentUdi=${this.contentUdi}
.label=${this._label}></umb-block-grid-block-inline>`;
return html`<umb-block-grid-block-inline .label=${this._label}></umb-block-grid-block-inline>`;
}
#renderRefBlock() {
return html`<umb-block-grid-block .contentUdi=${this.contentUdi} .label=${this._label}></umb-block-grid-block>`;
return html`<umb-block-grid-block .label=${this._label}></umb-block-grid-block>`;
}
#renderBlock() {