Skip to content

Commit

Permalink
fix: added missing expand used on event-form.js and summit-event-list…
Browse files Browse the repository at this point in the history
…-page.js
  • Loading branch information
smarcet committed Dec 13, 2024
1 parent 0d6d1b4 commit 5ceac93
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/actions/summit-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,18 @@ export const getSummitById = (summitId) => async (dispatch) => {
const params = {
access_token: accessToken,
expand:
"event_types,tracks,track_groups,values,locations,locations.rooms,locations.attributes.type,locations.floor,meeting_booking_room_allowed_attributes,meeting_booking_room_allowed_attributes.values,lead_report_settings"
"event_types," +
"tracks," +
"track_groups," +
"locations," +
"locations.rooms," +
"locations.attributes.type," +
"locations.floor," +
"meeting_booking_room_allowed_attributes," +
"meeting_booking_room_allowed_attributes.values," +
"lead_report_settings," +
"presentation_action_types," +
"selection_plans"
};

// set id
Expand Down

0 comments on commit 5ceac93

Please sign in to comment.