fix: transport bookings in PDF export with proper Lucide icons

This commit is contained in:
Maurice
2026-03-30 17:22:06 +02:00
parent 0a0205fcf9
commit 095cb1b9d1
2 changed files with 41 additions and 2 deletions
@@ -697,7 +697,7 @@ export default function DayPlanSidebar({
notes.map(n => ({ ...n, day_id: Number(dayId) }))
)
try {
await downloadTripPDF({ trip, days, places, assignments, categories, dayNotes: flatNotes, t, locale })
await downloadTripPDF({ trip, days, places, assignments, categories, dayNotes: flatNotes, reservations, t, locale })
} catch (e) {
console.error('PDF error:', e)
toast.error(t('dayplan.pdfError') + ': ' + (e?.message || String(e)))