mirror of
https://github.com/kbenestad/reimburse.git
synced 2026-06-18 16:04:31 +00:00
Rename PDF label from "Explanation:" to "Explanation for no receipt:"
https://claude.ai/code/session_016aNBqHpiQciTr1DvNvE7nk
This commit is contained in:
parent
66396219af
commit
f13b2cef6d
1 changed files with 1 additions and 1 deletions
|
|
@ -676,7 +676,7 @@ async function generatePDF() {
|
||||||
});
|
});
|
||||||
} else if (!ln.hasReceipt) {
|
} else if (!ln.hasReceipt) {
|
||||||
needSpace(lh * 2);
|
needSpace(lh * 2);
|
||||||
pg.drawText('Explanation:', {x:M.left, y, size:szSm-1, font:fontBold, color:gray});
|
pg.drawText('Explanation for no receipt:', {x:M.left, y, size:szSm-1, font:fontBold, color:gray});
|
||||||
y -= lh;
|
y -= lh;
|
||||||
const explLines = wrapText(ln.noReceiptExplanation || '–', fontBody, sz, W);
|
const explLines = wrapText(ln.noReceiptExplanation || '–', fontBody, sz, W);
|
||||||
explLines.forEach(line => {
|
explLines.forEach(line => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue