label for value type

This commit is contained in:
Lone Iversen
2023-05-04 10:59:30 +02:00
parent 509c1c0889
commit 9ae4daf667

View File

@@ -44,7 +44,10 @@ export class UmbPropertyEditorUIValueTypeElement extends UmbLitElement implement
}
render() {
return html`<uui-select .options="${this._options}" @change="${this.#onChange}"></uui-select>`;
return html`<uui-select
label="Select a value type"
.options="${this._options}"
@change="${this.#onChange}"></uui-select>`;
}
static styles = [UUITextStyles];