pict-section-form 1.0.150 → 1.0.151

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": "pict-section-form",
3
- "version": "1.0.150",
3
+ "version": "1.0.151",
4
4
  "description": "Pict dynamic form sections",
5
5
  "main": "source/Pict-Section-Form.js",
6
6
  "directories": {
@@ -90,6 +90,11 @@ class PictDynamicSolver extends libPictProvider
90
90
  let tmpResultsObject = {};
91
91
  let tmpSolutionValue = this.fable.ExpressionParser.solve(pSolverExpression, tmpViewMarshalDestinationObject, tmpResultsObject, this.pict.manifest);
92
92
 
93
+ if (tmpResultsObject.fable)
94
+ {
95
+ delete tmpResultsObject.fable;
96
+ }
97
+
93
98
  this.pict.log.trace(`Manual solve executed for expression: ${pSolverExpression}`, tmpResultsObject);
94
99
 
95
100
  return tmpSolutionValue;