adding "By Craig Paardekooper"

This commit is contained in:
Frank Knoll
2024-07-20 18:44:08 +02:00
parent a0fe9c9e0c
commit 8afe7a6103

View File

@@ -8,6 +8,7 @@ class PdfCreator {
return {
content: [
PdfCreator.#getPageHeading(heading),
{ text: 'By Craig Paardekooper', alignment: 'center', margin: [0, 0, 0, 20] },
...PdfCreator.#getWorstDrugsSection(symptom, valueName),
...PdfCreator.#getStrongestSymptomsSection(vaccine),
PdfCreator.#link2Origin(heading)
@@ -20,7 +21,7 @@ class PdfCreator {
text: heading,
fontSize: 18,
alignment: 'center',
margin: [0, 0, 0, 20],
margin: [0, 0, 0, 10],
bold: true
};
}