fix: typo in pdf report generation (#9322)

Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
This commit is contained in:
Hugo Pereira Brito
2025-11-26 13:58:40 +01:00
committed by GitHub
parent 4e9dd46a5e
commit 127b8d8e56
3 changed files with 9 additions and 2 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to the **Prowler API** are documented in this file.
## [1.15.1] (Prowler v5.14.1)
### Fixed
- Fix typo in PDF reporting [(#9322)](https://github.com/prowler-cloud/prowler/pull/9322)
---
## [1.15.0] (Prowler v5.14.0)
### Added

View File

@@ -782,7 +782,7 @@ def _add_pdf_footer(canvas_obj: canvas.Canvas, doc: SimpleDocTemplate) -> None:
"""
canvas_obj.saveState()
width, height = doc.pagesize
page_num_text = f"Página {doc.page}"
page_num_text = f"Page {doc.page}"
canvas_obj.setFont("PlusJakartaSans", 9)
canvas_obj.setFillColorRGB(0.4, 0.4, 0.4)
canvas_obj.drawString(30, 20, page_num_text)

View File

@@ -5,7 +5,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
## [v5.14.1] (Prowler UNRELEASED)
### Fixed
- Fix `sharepoint_external_sharing_managed` check to handle external sharing disabled at organization level [(#9298)](https://github.com/prowler-cloud/prowler/pull/9298)
- `sharepoint_external_sharing_managed` check to handle external sharing disabled at organization level [(#9298)](https://github.com/prowler-cloud/prowler/pull/9298)
---