From 31b5b2e25593134f54506b3b592860841a0cc0b9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 13 May 2026 10:00:43 +0000 Subject: [PATCH] Footer left: show 'Reimbursement form' and staff name on second line https://claude.ai/code/session_014uUwDBtG5y5FuWcy5zqVD1 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0eac17d..60c76ea 100644 --- a/index.html +++ b/index.html @@ -779,8 +779,8 @@ async function generatePDF() { pages.forEach((p, i) => { const fy = M.bottom - 30; p.drawLine({start:{x:M.left, y:fy+18}, end:{x:M.left+W, y:fy+18}, thickness:0.5, color:lineCol}); - const footLeft = CFG.footer || 'Reimbursement form'; - p.drawText(footLeft, {x:M.left, y:fy, size:szSm-1, font:fontBody, color:gray}); + p.drawText('Reimbursement form', {x:M.left, y:fy, size:szSm-1, font:fontBody, color:gray}); + p.drawText(state.staff, {x:M.left, y:fy-lh+2, size:szSm-1, font:fontBody, color:gray}); const pgStr = `Page ${i+1}/${totalPages}`; const pgW2 = fontBody.widthOfTextAtSize(pgStr, szSm-1); p.drawText(pgStr, {x:M.left+W-pgW2, y:fy, size:szSm-1, font:fontBody, color:gray});