diff --git a/packages/core/src/parsers/builder/builder.ts b/packages/core/src/parsers/builder/builder.ts index 5e2ac93ab3..3c34c8b003 100644 --- a/packages/core/src/parsers/builder/builder.ts +++ b/packages/core/src/parsers/builder/builder.ts @@ -391,11 +391,12 @@ const componentMappers: { * If width if undefined, do not create a binding otherwise its JSX will * be which is not valid due to the empty expression. */ - ...(col.width !== undefined && { - bindings: { - width: { code: col.width.toString() }, - }, - }), + ...(col.width !== undefined && + col.width !== null && { + bindings: { + width: { code: col.width.toString() }, + }, + }), ...(col.link && { properties: { link: col.link,