@measurequick/measurequick-report-generator 1.5.143 → 1.5.144

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": "@measurequick/measurequick-report-generator",
3
- "version": "1.5.143",
3
+ "version": "1.5.144",
4
4
  "description": "Generates PDF documents for various measureQuick applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -533,10 +533,10 @@ function getTextFields(payload, test) {
533
533
 
534
534
  // Compute chosen manifold pressure value
535
535
  const chosenManifold = firstDefined(
536
- test.data[test.manifoldKey],
536
+ test.data.pressure_manifold_after,
537
537
  test.data.pressure_manifold,
538
- test.data.pressure_manifold_before,
539
- test.data.pressure_manifold_after
538
+ test.data[test.manifoldKey],
539
+ test.data.pressure_manifold_before
540
540
  );
541
541
 
542
542
  return {
@@ -525,10 +525,10 @@ function getTextFields(payload, test) {
525
525
 
526
526
  // Compute chosen manifold pressure value
527
527
  const chosenManifold = firstDefined(
528
- test.data[test.manifoldKey],
528
+ test.data.pressure_manifold_after,
529
529
  test.data.pressure_manifold,
530
- test.data.pressure_manifold_before,
531
- test.data.pressure_manifold_after
530
+ test.data[test.manifoldKey],
531
+ test.data.pressure_manifold_before
532
532
  );
533
533
 
534
534
  return {