We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73028e3 commit 029f8b2Copy full SHA for 029f8b2
src/packages/core/property/property/property.element.ts
@@ -234,7 +234,10 @@ export class UmbPropertyElement extends UmbLitElement {
234
this.#valueObserver = this.observe(
235
this.#propertyContext.value,
236
(value) => {
237
+ // Set the value on the element:
238
this._element!.value = value;
239
+ // Set the value on the context as well, to ensure that any default values are stored right away:
240
+ this.#propertyContext.setValue(value);
241
if (this.#validationMessageBinder) {
242
this.#validationMessageBinder.value = value;
243
}
0 commit comments