Skip to content

Commit 127b8d8

Browse files
fix: typo in pdf report generation (#9322)
Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
1 parent 4e9dd46 commit 127b8d8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

api/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to the **Prowler API** are documented in this file.
44

5+
## [1.15.1] (Prowler v5.14.1)
6+
7+
### Fixed
8+
- Fix typo in PDF reporting [(#9322)](https://github.com/prowler-cloud/prowler/pull/9322)
9+
10+
---
11+
512
## [1.15.0] (Prowler v5.14.0)
613

714
### Added

api/src/backend/tasks/jobs/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ def _add_pdf_footer(canvas_obj: canvas.Canvas, doc: SimpleDocTemplate) -> None:
782782
"""
783783
canvas_obj.saveState()
784784
width, height = doc.pagesize
785-
page_num_text = f"Página {doc.page}"
785+
page_num_text = f"Page {doc.page}"
786786
canvas_obj.setFont("PlusJakartaSans", 9)
787787
canvas_obj.setFillColorRGB(0.4, 0.4, 0.4)
788788
canvas_obj.drawString(30, 20, page_num_text)

prowler/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
55
## [v5.14.1] (Prowler UNRELEASED)
66

77
### Fixed
8-
- Fix `sharepoint_external_sharing_managed` check to handle external sharing disabled at organization level [(#9298)](https://github.com/prowler-cloud/prowler/pull/9298)
8+
- `sharepoint_external_sharing_managed` check to handle external sharing disabled at organization level [(#9298)](https://github.com/prowler-cloud/prowler/pull/9298)
99

1010
---
1111

0 commit comments

Comments
 (0)