Fix a mistake

This was unintentionally modifying the source array, causing some of the schedules to disappear for a moment (before "now" was updated at the next second).
This commit is contained in:
Matt Isenhower
2017-08-04 12:17:58 -07:00
parent 95db51a1aa
commit 712641b92a

View File

@@ -44,7 +44,7 @@ export default {
computed: {
first() { return this.schedules && this.schedules[0]; },
second() { return this.schedules && this.schedules[1]; },
others() { return this.schedules && this.schedules.splice(2); },
others() { return this.schedules && this.schedules.slice(2); },
},
}
</script>