@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.
@@ -158,9 +158,8 @@ exports.CLXFormLayoutConvert = {
158
158
  return markdown;
159
159
  }
160
160
  layout.steps.forEach((step, stepIndex) => {
161
- markdown += `# ${stepIndex + 1}. ${step.name}\n\n`;
162
- if (step.description) {
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/clxforms-client",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "CLXperience Forms Client",
5
5
  "author": "Brandon Thompson <brandont@clxmedia.com>",
6
6
  "license": "MIT",