From 4f8d694722b2374c2c7614fab9be7d9201352081 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Sat, 5 Aug 2017 20:49:20 -0700 Subject: [PATCH] Fix a visual glitch when rolling over to a new hour --- src/js/components/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/components/App.vue b/src/js/components/App.vue index 3c87095..e3aa99b 100644 --- a/src/js/components/App.vue +++ b/src/js/components/App.vue @@ -121,7 +121,7 @@ export default { return this.festival && this.festival.times.start <= this.now && this.festival.times.end > this.now; }, coop() { - if (!this.loading && this.splatnet.timeline.coop && this.splatnet.timeline.coop.schedule.end_time >= this.now) + if (!this.loading && this.splatnet.timeline.coop && this.splatnet.timeline.coop.schedule.end_time > this.now) return this.splatnet.timeline.coop; }, }, @@ -156,7 +156,7 @@ export default { this.now = Math.trunc((new Date).getTime() / 1000); }, filterSchedule(item) { - return item.end_time >= this.now; + return item.end_time > this.now; }, }, }