@ubox-tools/deploy-xperience 1.1.7 → 1.1.8

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.
Files changed (2) hide show
  1. package/deploy.js +2 -2
  2. package/package.json +1 -1
package/deploy.js CHANGED
@@ -613,8 +613,8 @@ async function configureParameters(page, params) {
613
613
  const values = [
614
614
  key,
615
615
  def.description || '',
616
- def.value || key,
617
- def['default value'] || key,
616
+ String(def.value ?? key),
617
+ String(def['default value'] ?? key),
618
618
  ];
619
619
 
620
620
  for (let i = 0; i < Math.min(fieldRects.length, values.length); i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ubox-tools/deploy-xperience",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Deploy a Ubox experience to studio.ubox.world",
5
5
  "bin": { "deploy-xperience": "./deploy.js" },
6
6
  "dependencies": { "puppeteer": "*" },