From e216e06b79f9f99d689c1f99085e9ddaca3772c9 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 10 Nov 2017 11:55:38 -0800 Subject: [PATCH] Fix some mistakes --- src/js/components/screenshots/salmonrun/SalmonRun.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/components/screenshots/salmonrun/SalmonRun.vue b/src/js/components/screenshots/salmonrun/SalmonRun.vue index 89028a5..6e64672 100644 --- a/src/js/components/screenshots/salmonrun/SalmonRun.vue +++ b/src/js/components/screenshots/salmonrun/SalmonRun.vue @@ -5,7 +5,7 @@ @@ -36,10 +36,10 @@ export default { if (this.timeline && this.timeline.coop && this.timeline.coop.schedule.end_time > this.now) return this.timeline.coop; }, - coopSchedules() { + filteredCoopSchedules() { if (this.coopSchedules) { - let details = this.splatnet.coopSchedules.details.filter(s => s.start_time == this.now); - let schedules = this.splatnet.coopSchedules.schedules.filter(s => s.start_time == this.now); + let details = this.coopSchedules.details.filter(s => s.start_time == this.now); + let schedules = this.coopSchedules.schedules.filter(s => s.start_time == this.now); return { details, schedules }; } },