Переглянути джерело

:recycle: missing func declaration | oops

tags/0.9.0
J 4 роки тому
джерело
коміт
3897cf52c7
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      vue-theme/src/store/modules/event.js

+ 1
- 1
vue-theme/src/store/modules/event.js Переглянути файл

12
     allEvents: state => state.all,
12
     allEvents: state => state.all,
13
     allEventsLoaded: state => state.loaded,
13
     allEventsLoaded: state => state.loaded,
14
     pastEvents: state => state.all.filter(event => parseInt(event.end) > now),
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
 const actions = {
18
 const actions = {

Завантаження…
Відмінити
Зберегти