Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,10 @@ const fetchPage = async () => {
page: nextAppointmentPage.value,
startDate: new Date(),
bookingId: bookingId,
endDate: new Date(new Date().setFullYear(new Date().getFullYear() + 1)),
// endDate is mandatory in this use case; +5 years is an arbitrary value
endDate: new Date(new Date().setFullYear(new Date().getFullYear() + 5)),
size: 5,
sort: ["schedule.occupancyStart,asc"],
});
};

Expand Down
6 changes: 3 additions & 3 deletions raumreservierung-frontend/src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"roomResourceManagementCard": {
"subtitle": "Neue {domain} zu bestehender Liste hinzufügen."
},
"dateDisplay": "{day} den {date}",
"dateDisplay": "{day}, {date}",
"scheduleTimelineCard": {
"header": "Zeitlicher Ablauf",
"end": "Ende",
Expand Down Expand Up @@ -242,8 +242,8 @@
"scheduleTemplate": {
"date": "Datum",
"endDate": "Enddatum",
"startTime": "Startzeit",
"endTime": "Endzeit",
"startTime": "Buchungsbeginn",
"endTime": "Buchungsende",
"appointmentStart": "Veranstaltungsbeginn",
"appointmentEnd": "Veranstaltungsende"
},
Expand Down
Loading