lw-cdp-ui 1.5.6 → 1.5.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.
@@ -284,7 +284,8 @@ export default {
284
284
  } else {
285
285
  if (item.component === 'number') {
286
286
  result[item.name] =
287
- existingValue ?? (item.value !== undefined ? Number(item.value) : item.options?.min || 0)
287
+ existingValue ??
288
+ (item.value !== undefined ? Number(item.value) : item.options?.defaultValue || item.options?.min || 0)
288
289
  } else {
289
290
  result[item.name] = existingValue ?? item.value
290
291
  }