Merge branch 'main' into aggresive-redact

This commit is contained in:
Balázs Szücs 2025-09-02 21:06:45 +02:00 committed by GitHub
commit 338b77de99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -694,7 +694,7 @@ class PdfContainer {
const documentBlob = new Blob([pdfBytesArray[i]], {
type: 'application/pdf',
});
zip.file(baseNameString + '-' + (i + 1) + '.pdf', documentBlob);
zip.file(baseNameString + '-' + String(i + 1).padStart(1 + Math.floor(Math.log10(pdfBytesArray.length)), "0") + '.pdf', documentBlob);
}
return zip;

View File

@ -3,7 +3,7 @@ repositories {
}
ext {
jwtVersion = '0.12.7'
jwtVersion = '0.13.0'
}
bootRun {