diff --git a/media_commons_booking_app/src/client/booking/approval_email.html b/media_commons_booking_app/src/client/booking/approval_email.html index 3f97ae82..5b9c882e 100644 --- a/media_commons_booking_app/src/client/booking/approval_email.html +++ b/media_commons_booking_app/src/client/booking/approval_email.html @@ -135,8 +135,9 @@

Room Reservation Request

+

Chartfield for Room setup?: - +

Media Services: @@ -151,11 +152,19 @@

Room Reservation Request

Catering Details:

- +

+ Chartfield for Catering?: + +

Hire Security:

+

+ Chartfield for Hiring Security?: + +

+

{ const onSubmit: SubmitHandler = (data) => { const dumpMediaServices = data.mediaServices || []; //@ts-ignore - data.mediaServices = dumpMediaServices?.join(', '); + data.mediaServices = Array.isArray(dumpMediaServices) + ? dumpMediaServices.join(', ') + : dumpMediaServices; handleParentSubmit(data); }; diff --git a/media_commons_booking_app/src/client/booking/components/SheetEditor.tsx b/media_commons_booking_app/src/client/booking/components/SheetEditor.tsx index 9eaadead..d720207a 100644 --- a/media_commons_booking_app/src/client/booking/components/SheetEditor.tsx +++ b/media_commons_booking_app/src/client/booking/components/SheetEditor.tsx @@ -160,7 +160,7 @@ const SheetEditor = () => { )?.calendarId; const calendarEventId = await serverFunctions.addEventToCalendar( roomCalendarId, - `[REQUESTED] Room request from ${userEmail}`, + `[REQUESTED] ${room.roomId} ${data.department} ${userEmail}`, 'Your reservation is not yet confirmed. The coordinator will review and finalize your reservation within a few days.', bookInfo.startStr, bookInfo.endStr,