Skip to content
Snippets Groups Projects
Commit e895be6a authored by Jörn Künsemöller's avatar Jörn Künsemöller
Browse files

TMSS-2831: also handle updates on reservations that moved into wekkview scope

parent e1ed2dc8
No related branches found
No related tags found
1 merge request!1210Resolve TMSS-2831
......@@ -296,7 +296,7 @@ export default function WeekView() {
.catch(e => console.error("Couldn't retrieve scheduling unit details for id: ", id, e));
}
function fetchBlueprintAndAddToTimeline(id) {
function fetchReservationAndAddToTimeline(id) {
const shouldFetchReservations = getStore(UIConstants.STORE_KEY_TIMELINE).reservationsToggle;
if (shouldFetchReservations) {
ReservationService.getTimelineReservations(undefined, undefined, id) // todo: check time
......@@ -306,6 +306,7 @@ export default function WeekView() {
reservations: prevData.reservations.concat(response)
}));
});
.catch(e => console.error("Couldn't retrieve reservation details for id: ", id, e));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment