@clxmedia/clxforms-client 1.0.31 → 1.0.32
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/layout-convert.js +2 -3
- package/package.json +1 -1
package/dist/layout-convert.js
CHANGED
|
@@ -158,9 +158,8 @@ exports.CLXFormLayoutConvert = {
|
|
|
158
158
|
return markdown;
|
|
159
159
|
}
|
|
160
160
|
layout.steps.forEach((step, stepIndex) => {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
markdown += `*${step.description}*\n\n`;
|
|
161
|
+
if (layout.steps.length > 1) {
|
|
162
|
+
markdown += `# ${stepIndex + 1}. ${step.name}\n\n`;
|
|
164
163
|
}
|
|
165
164
|
step.sections.forEach((section) => {
|
|
166
165
|
if (section.name) {
|