@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openeventkit/event-site",
3
3
  "description": "Event Site",
4
- "version": "1.0.50",
4
+ "version": "1.0.51",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@mui/base": "^5.0.0-alpha.114",
@@ -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: allScheduleEvents, baseFilters: newFilters, filters: newFilters, pre_filters: newPreFilters};
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: filterEventsByTags(allScheduleEvents)
81
+ allScheduleEvents: allEventsTagExclusion
81
82
  };
82
83
  }
83
84
  case GET_EVENT_DATA: {