@openeventkit/event-site 1.0.50 → 1.0.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -45,6 +45,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
45
45
|
case RELOAD_SCHED_DATA:
|
|
46
46
|
{
|
|
47
47
|
const {eventsData: allScheduleEvents, summitData, isLoggedUser, userProfile, eventsIDXData } = payload;
|
|
48
|
+
const allEventsTagExclusion = filterEventsByTags(allScheduleEvents);
|
|
48
49
|
|
|
49
50
|
const schedules = summitData?.schedule_settings?.map(sched => {
|
|
50
51
|
|
|
@@ -62,7 +63,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
62
63
|
return result;
|
|
63
64
|
}, {});
|
|
64
65
|
|
|
65
|
-
const newData = {...sched, all_events:
|
|
66
|
+
const newData = {...sched, all_events: allEventsTagExclusion, baseFilters: newFilters, filters: newFilters, pre_filters: newPreFilters};
|
|
66
67
|
|
|
67
68
|
const schedState = scheduleReducer(scheduleState, {type: `SCHED_${type}`, payload: {...newData, isLoggedUser, userProfile }});
|
|
68
69
|
|
|
@@ -77,7 +78,7 @@ const allSchedulesReducer = (state = DEFAULT_STATE, action) => {
|
|
|
77
78
|
allEvents:allScheduleEvents,
|
|
78
79
|
schedules,
|
|
79
80
|
allIDXEvents: eventsIDXData,
|
|
80
|
-
allScheduleEvents:
|
|
81
|
+
allScheduleEvents: allEventsTagExclusion
|
|
81
82
|
};
|
|
82
83
|
}
|
|
83
84
|
case GET_EVENT_DATA: {
|
|
Binary file
|
|
Binary file
|