@@ -41,16 +39,11 @@ import ScheduleRow from './ScheduleRow.vue';
export default {
components: { ScheduleRow },
- props: ['schedules', 'now', 'onlyFirst'],
+ props: ['schedules', 'now'],
computed: {
first() { return this.schedules && this.schedules[0]; },
second() { return this.schedules && this.schedules[1]; },
others() { return this.schedules && this.schedules.slice(2); },
- smallSize() {
- // Use a smaller size on smaller displays when only displaying the first row
- // (i.e., only when viewing the row on the main page with the three types of battles)
- return this.onlyFirst;
- }
},
}