FIX: calendar options part 2 (#26371)

This part of the commit has been mistakenly forgotten from bddc41b7ad
This commit is contained in:
Joffrey JAFFEUX 2024-03-26 15:19:02 +01:00 committed by GitHub
parent bddc41b7ad
commit 58990fb00f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,7 +101,13 @@ function _displayModal(title, dates, options = {}) {
const modal = getOwnerWithFallback(this).lookup("service:modal");
modal.show(downloadCalendarModal, {
model: {
calendar: { title, dates, recurrenceRule: options.recurrenceRule },
calendar: {
title,
dates,
recurrenceRule: options.recurrenceRule,
location: options.location,
details: options.details,
},
},
});
}