Skip to content

Commit 6a01e14

Browse files
committed
deploy: c9842b5
1 parent 91c19c1 commit 6a01e14

File tree

2 files changed

+64
-64
lines changed

2 files changed

+64
-64
lines changed

dist/custom-elements.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13273,7 +13273,7 @@
1327313273
"name": "formControlController",
1327413274
"privacy": "private",
1327513275
"readonly": true,
13276-
"default": "new FormControlController(this, { defaultValue: (control: ZnInlineEdit) => control.defaultValue, value: (control: ZnInlineEdit) => { if (control.multiple && typeof control.value === 'string') { return control.value.split(' ').filter(v => v !== ''); } return control.value; }, })"
13276+
"default": "new FormControlController(this, { defaultValue: (control: ZnInlineEdit) => control.defaultValue, value: (control: ZnInlineEdit) => { if (control.multiple) { const val = typeof control.value === 'string' ? control.value.split(' ').filter(v => v !== '') : control.value; return val.length > 0 ? val : ''; } return control.value; }, })"
1327713277
},
1327813278
{
1327913279
"kind": "field",

0 commit comments

Comments
 (0)