@builttocreate/engine-utils 1.16.0-rc4 → 1.16.0-rc5
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/dist/formHelper.js +2 -1
- package/package.json +1 -1
package/dist/formHelper.js
CHANGED
|
@@ -83,7 +83,7 @@ var formatv2Form = function formatv2Form(form) {
|
|
|
83
83
|
if (field.title) formattedData.title = field.title;
|
|
84
84
|
if (field.value) formattedData.value = field.value;
|
|
85
85
|
if (field.tableColumns) formattedData.tableColumns = field.tableColumns;
|
|
86
|
-
if (field.options) formattedData.
|
|
86
|
+
if (field.options) formattedData.options = field.options;
|
|
87
87
|
if (field.yTitle) formattedData.yTitle = field.yTitle;
|
|
88
88
|
if (typeof field.yMax === 'number') formattedData.yMax = field.yMax;
|
|
89
89
|
if (typeof field.yMin === 'number') formattedData.yMin = field.yMin;
|
|
@@ -93,6 +93,7 @@ var formatv2Form = function formatv2Form(form) {
|
|
|
93
93
|
nextPage.fields.push(formattedData);
|
|
94
94
|
nextFields.push(formattedData);
|
|
95
95
|
});
|
|
96
|
+
return nextPage;
|
|
96
97
|
});
|
|
97
98
|
return _objectSpread(_objectSpread({}, form), {}, {
|
|
98
99
|
pages: nextPages,
|