소스 검색

: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,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 = {

Loading…
취소
저장