1
0
Fork 0

Merge pull request #5539 from ArcticCoder/fix-docs-missing-options

Fix docs missing options
This commit is contained in:
Joost De Cock 2023-11-27 17:54:47 +01:00 committed by GitHub
commit 22ef62655d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 61 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Outseam ease"
---
Controls how far down the garment the waist, hips, seat, and upper leg points on the outseam will be.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -0,0 +1,5 @@
---
title: "Waist ease"
---
Controls how wide the garment will be around the waist.

View file

@ -49,7 +49,7 @@ const OptionGroup = ({ id, group, t, design }) => (
<ul className="list list-inside list-disc pl-2">
{Object.entries(group).map(([sid, entry]) =>
entry.isGroup ? (
<OptionGroup id={sid} key={sid} t={t} group={entry} desing={design} />
<OptionGroup id={sid} key={sid} t={t} group={entry} design={design} />
) : (
<Option key={sid} id={sid} option={entry} design={design} />
)