@contentful/experiences-visual-editor-react 1.31.1-dev-20250218T1728-50b0be5.0 → 1.31.1-dev-20250219T1207-190e914.0
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +1 -1
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -5208,7 +5208,7 @@ function useSingleColumn(node, resolveDesignValue) {
|
|
|
5208
5208
|
return { isWrapped, wrapColumnsCount };
|
|
5209
5209
|
}
|
|
5210
5210
|
const parentNode = getItem({ id: node.parentId }, tree);
|
|
5211
|
-
if (!parentNode) {
|
|
5211
|
+
if (!parentNode || parentNode.data.blockId !== CONTENTFUL_COMPONENTS$1.columns.id) {
|
|
5212
5212
|
return { isWrapped, wrapColumnsCount };
|
|
5213
5213
|
}
|
|
5214
5214
|
const { cfWrapColumns, cfWrapColumnsCount } = parentNode.data.props;
|