@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.
- package/deploy.js +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
|
|
617
|
-
def['default value']
|
|
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