fleetmap-reports 1.0.297 → 1.0.298
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 +1 -1
- package/src/speeding-report.js +1 -1
package/package.json
CHANGED
package/src/speeding-report.js
CHANGED
|
@@ -346,7 +346,7 @@ async function exportSpeedingReportToPDF(userData, reportData) {
|
|
|
346
346
|
|
|
347
347
|
if (overspeedData) {
|
|
348
348
|
let first = true
|
|
349
|
-
const doc = new jsPDF.jsPDF('l');
|
|
349
|
+
const doc = new jsPDF.jsPDF('l','pt', 'a4', true);
|
|
350
350
|
await headerFromUser(doc, translations.report.titleSpeedingReport, userData.user)
|
|
351
351
|
|
|
352
352
|
overspeedData.forEach(d => {
|