@builder.io/mitosis 0.5.33 → 0.5.34
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.
|
@@ -371,7 +371,7 @@ const componentMappers = {
|
|
|
371
371
|
* If width if undefined, do not create a binding otherwise its JSX will
|
|
372
372
|
* be <Column width={} /> which is not valid due to the empty expression.
|
|
373
373
|
*/
|
|
374
|
-
...(col.width
|
|
374
|
+
...(col.width != null && {
|
|
375
375
|
bindings: {
|
|
376
376
|
width: { code: col.width.toString() },
|
|
377
377
|
},
|