@plasmicapp/react-web 0.2.301 → 0.2.302

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.
@@ -1572,6 +1572,9 @@ function maybeAsString(node) {
1572
1572
  if (typeof node === "string") {
1573
1573
  return node;
1574
1574
  }
1575
+ if (typeof node === "number") {
1576
+ return "".concat(node);
1577
+ }
1575
1578
  if (Array.isArray(node) && node.length === 1 && typeof node[0] === "string") {
1576
1579
  return node[0];
1577
1580
  }