Skip to content

Commit 5db52c0

Browse files
committed
add getter
1 parent cde383e commit 5db52c0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/packages/property-editors/checkbox-list/components/input-checkbox-list/input-checkbox-list.element.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ export class UmbInputCheckboxListElement extends UUIFormControlMixin(UmbLitEleme
2525
public override set value(value: string) {
2626
this.selection = value.split(',');
2727
}
28+
public override get value(): string {
29+
return this.selection.join(',');
30+
}
2831

2932
protected override getFormElement() {
3033
return undefined;

0 commit comments

Comments
 (0)