new features

This commit is contained in:
Matthias Hochmeister
2026-03-23 15:44:43 +01:00
parent bfcf1556da
commit e9a9478aac
2 changed files with 1 additions and 2 deletions

View File

@@ -203,7 +203,6 @@ const VehicleBookingListWidget: React.FC = () => {
}} }}
> >
{booking.fahrzeug_name} {booking.fahrzeug_name}
{booking.fahrzeug_kennzeichen ? ` · ${booking.fahrzeug_kennzeichen}` : ''}
</Typography> </Typography>
</Box> </Box>
</ListItem> </ListItem>

View File

@@ -858,7 +858,7 @@ async function generateBookingsPdf(
const active = bookings.filter((b) => !b.abgesagt); const active = bookings.filter((b) => !b.abgesagt);
const rows = active.map((b) => [ const rows = active.map((b) => [
b.fahrzeug_name + (b.fahrzeug_kennzeichen ? `\n${b.fahrzeug_kennzeichen}` : ''), b.fahrzeug_name,
b.titel, b.titel,
formatDt(b.beginn), formatDt(b.beginn),
formatDt(b.ende), formatDt(b.ende),