@measurequick/measurequick-report-generator 1.0.44 → 1.0.45

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/index.js CHANGED
@@ -195,8 +195,8 @@ function printSinglePhotoSection(photoSection) {
195
195
  var x = 1;
196
196
  var y = 1;
197
197
  var i = 0;
198
- for (let photoIndex = 0; photoIndex < photoSection.length; photoIndex++) {
199
- doc.addImage(photoSection[photoIndex].base64, "PNG", x, y, .5, .5);
198
+ for (var photoIndex = 0; photoIndex < photoSection.length; photoIndex++) {
199
+ doc.addImage(photoSection[photoIndex].base64, "PNG", x, y, 3, 3);
200
200
  y += 1;
201
201
  }
202
202
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@measurequick/measurequick-report-generator",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "description": "Generates PDF documents for various MeasureQuick applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {