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.
2 parents b193288 + 029f8b2 commit 73107b8Copy full SHA for 73107b8
src/packages/core/property/property/property.element.ts
@@ -235,7 +235,10 @@ export class UmbPropertyElement extends UmbLitElement {
235
this.#valueObserver = this.observe(
236
this.#propertyContext.value,
237
(value) => {
238
+ // Set the value on the element:
239
this._element!.value = value;
240
+ // Set the value on the context as well, to ensure that any default values are stored right away:
241
+ this.#propertyContext.setValue(value);
242
if (this.#validationMessageBinder) {
243
this.#validationMessageBinder.value = value;
244
}
0 commit comments