Fix an issue with outdated browsers

This commit is contained in:
Matt Isenhower
2022-09-20 16:33:51 -07:00
parent 63d10ddc69
commit 2416ca3b4a

View File

@@ -104,7 +104,7 @@ const types = {
const type = computed(() => types[props.type]);
const store = computed(() => type.value.store);
const nextSchedule = computed(() => store.value.upcomingSchedules?.at(0));
const nextSchedule = computed(() => store.value.upcomingSchedules?.[0]);
</script>
<style scoped>