Skip to content

Commit

Permalink
OpenConceptLab/ocl_issues#1013 | custom attributes nested object form…
Browse files Browse the repository at this point in the history
…atting
  • Loading branch information
snyaggarwal committed Oct 20, 2021
1 parent e98500f commit cd07f78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/common/CustomAttributesAccordian.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ const CustomAttributesAccordian = ({headingStyles, detailStyles, attributes}) =>
}
{
needNesting &&
map(value, (val, index) => getNestedValueDom(val, index))
<div>
{
map(value, (val, index) => getNestedValueDom(val, index))
}
</div>
}
{
isArr && !needNesting &&
Expand Down

0 comments on commit cd07f78

Please sign in to comment.