|
|
@@ -12,7 +12,7 @@ const getters = {
|
|
12
|
12
|
allEvents: state => state.all,
|
|
13
|
13
|
allEventsLoaded: state => state.loaded,
|
|
14
|
14
|
pastEvents: state => state.all.filter(event => parseInt(event.end) > now),
|
|
15
|
|
- upcomingAndCurrentEvents: state.all.filter(event => parseInt(event.end) <= now),
|
|
|
15
|
+ upcomingAndCurrentEvents: state => state.all.filter(event => parseInt(event.end) <= now),
|
|
16
|
16
|
}
|
|
17
|
17
|
|
|
18
|
18
|
const actions = {
|