From 896bb72f2c0010407d1493ff0de89326350d840f Mon Sep 17 00:00:00 2001
From: Lone Iversen <108085781+loivsen@users.noreply.github.com>
Date: Fri, 12 Jan 2024 09:37:24 +0100
Subject: [PATCH] revert render of inline create
---
.../property-editor-ui-block-list.element.ts | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
index 2775afbbda..0ba6d626a8 100644
--- a/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
+++ b/src/Umbraco.Web.UI.Client/src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts
@@ -140,11 +140,11 @@ export class UmbPropertyEditorUIBlockListElement extends UmbLitElement implement
render() {
return html` ${repeat(
this._layouts,
- (x, index) => x.contentUdi + index,
- (layoutEntry, index) => html`
-
- ${index !== this._layouts.length - 1 ? html`` : nothing}
- `,
+ (x) => x.contentUdi,
+ (layoutEntry) =>
+ html`
+
+ `,
)}