@saltcorn/builder 0.9.4-beta.18 → 0.9.4-beta.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saltcorn/builder",
3
- "version": "0.9.4-beta.18",
3
+ "version": "0.9.4-beta.19",
4
4
  "description": "Drag and drop view builder for Saltcorn, open-source no-code platform",
5
5
  "main": "index.js",
6
6
  "homepage": "https://saltcorn.com",
@@ -20,7 +20,7 @@
20
20
  "@babel/preset-react": "7.9.4",
21
21
  "@craftjs/core": "0.1.0-beta.20",
22
22
  "@craftjs/utils": "0.1.0-beta.20",
23
- "@saltcorn/common-code": "0.9.4-beta.18",
23
+ "@saltcorn/common-code": "0.9.4-beta.19",
24
24
  "saltcorn-craft-layers-noeye": "0.1.0-beta.22",
25
25
  "@fonticonpicker/react-fonticonpicker": "1.2.0",
26
26
  "@fortawesome/fontawesome-svg-core": "1.2.34",
@@ -447,6 +447,7 @@ const craftToSaltcorn = (nodes, startFrom = "ROOT", options) => {
447
447
  related.fields.forEach((f) => {
448
448
  c[f.column_name || f.name || f] = node.props[f.name || f];
449
449
  });
450
+ if (s.isFormula) c.isFormula = s.isFormula;
450
451
  columns.push(c);
451
452
  }
452
453
  return s;