remove 'hey'

This commit is contained in:
Niels Lyngsø
2023-12-20 10:03:48 +01:00
parent f680ed5bfd
commit 8d3ddbd71d

View File

@@ -21,12 +21,11 @@ export class UmbPropertyEditorUIBlockListBlockConfigurationElement
public config?: UmbPropertyEditorConfigCollection;
render() {
return html`Hey
<umb-input-block-type
.value=${this.value}
@change=${(e: Event) => {
this.value = (e.target as UmbInputBlockTypeElement).value;
}}></umb-input-block-type>`;
return html`<umb-input-block-type
.value=${this.value}
@change=${(e: Event) => {
this.value = (e.target as UmbInputBlockTypeElement).value;
}}></umb-input-block-type>`;
}
static styles = [UmbTextStyles];