@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
|
@@ -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
|
|
536
|
+
test.data.pressure_manifold_after,
|
|
537
537
|
test.data.pressure_manifold,
|
|
538
|
-
test.data.
|
|
539
|
-
test.data.
|
|
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
|
|
528
|
+
test.data.pressure_manifold_after,
|
|
529
529
|
test.data.pressure_manifold,
|
|
530
|
-
test.data.
|
|
531
|
-
test.data.
|
|
530
|
+
test.data[test.manifoldKey],
|
|
531
|
+
test.data.pressure_manifold_before
|
|
532
532
|
);
|
|
533
533
|
|
|
534
534
|
return {
|