fix issue with multiple text string

This commit is contained in:
Niels Lyngsø
2023-06-08 22:05:31 +02:00
parent 3925353a20
commit 1dcc8d21fc

View File

@@ -104,8 +104,8 @@ export class UmbInputMultipleTextStringElement extends FormControlMixin(UmbLitEl
}
public set items(items: MultipleTextStringValue) {
// TODO: when we have a way to overwrite the missing value validator we can remove this
this.value = items.length > 0 ? 'some value' : '';
this._items = items || [];
this.value = items?.length > 0 ? 'some value' : '';
this._items = items ?? [];
}
// TODO: Some inputs might not have a value that is either FormDataEntryValue or FormData.