@gem-sdk/core 1.23.0-staging.90 → 1.23.0-staging.97
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.
|
@@ -107,7 +107,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
107
107
|
});
|
|
108
108
|
});
|
|
109
109
|
} else {
|
|
110
|
-
liquid = render.template`<div style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${
|
|
110
|
+
liquid = render.template`<div style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${!item?.childrens?.length && item.tag === 'IconListItemHoz' ? 'hidden' : ''}">
|
|
111
111
|
${render.RenderIf(item?.childrens?.length, ()=>{
|
|
112
112
|
return Component({
|
|
113
113
|
builderProps: {
|
|
@@ -103,7 +103,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
103
103
|
});
|
|
104
104
|
});
|
|
105
105
|
} else {
|
|
106
|
-
liquid = template`<div style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${
|
|
106
|
+
liquid = template`<div style="${!componentIconList.includes(item.tag) ? style : ''}" class="${item.uid} ${!item?.childrens?.length && item.tag === 'IconListItemHoz' ? 'hidden' : ''}">
|
|
107
107
|
${RenderIf(item?.childrens?.length, ()=>{
|
|
108
108
|
return Component({
|
|
109
109
|
builderProps: {
|