fix(orgdocs): Use bare key for option menus without translations
This commit is contained in:
parent
8d8ed7fe47
commit
51b94cfcd4
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ const Option = ({ id, option, design, i18n }) =>
|
|||
|
||||
const OptionGroup = ({ id, group, design, i18n }) => (
|
||||
<li key={id}>
|
||||
<b>{optionGroupTranslations[id]}</b>
|
||||
<b>{optionGroupTranslations[id] || id}</b>
|
||||
<ul className="list list-inside list-disc pl-2">
|
||||
{Object.entries(group).map(([sid, entry]) =>
|
||||
entry.isGroup ? (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue