@measurequick/measurequick-report-generator 1.5.18 → 1.5.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": "@measurequick/measurequick-report-generator",
3
- "version": "1.5.18",
3
+ "version": "1.5.19",
4
4
  "description": "Generates PDF documents for various measureQuick applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -148,9 +148,9 @@ export async function getReport(payload, _test) {
148
148
  form.getTextField('TimeOfServiceUpper').setText(date.toLocaleTimeString("en-US"));
149
149
  }
150
150
  let type = 'Duct System Screening';
151
- if (test.ductScreeningSystemType === 1)
151
+ if (test.ductScreeningType === 1)
152
152
  type = 'Duct System Analysis';
153
- else if (test.ductScreeningSystemType === 2)
153
+ else if (test.ductScreeningType === 2)
154
154
  type = 'Duct Analysis w/Fan Table';
155
155
 
156
156
  form.getTextField('HeaderText').setText(type);