@pageboard/html 0.12.6 → 0.12.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ui/fieldset-list.js +1 -1
- package/ui/form.js +0 -1
package/package.json
CHANGED
package/ui/fieldset-list.js
CHANGED
|
@@ -207,7 +207,7 @@ class HTMLElementFieldsetList extends Page.Element {
|
|
|
207
207
|
|
|
208
208
|
#listToValues(values, list) {
|
|
209
209
|
for (let i = 0; i < list.length; i++) {
|
|
210
|
-
const obj = list[i];
|
|
210
|
+
const obj = list[i] ?? {};
|
|
211
211
|
for (const [key, val] of Object.entries(obj)) {
|
|
212
212
|
const parts = this.#prefix.slice();
|
|
213
213
|
parts.push(i);
|