diff --git a/src/js/components/splatoon/SplatfestBox.vue b/src/js/components/splatoon/SplatfestBox.vue
index fdfdf22..f217916 100644
--- a/src/js/components/splatoon/SplatfestBox.vue
+++ b/src/js/components/splatoon/SplatfestBox.vue
@@ -2,7 +2,7 @@
@@ -47,6 +47,11 @@ import Vue from 'vue';
export default {
props: ['festival', 'now'],
computed: {
+ title() {
+ if (this.festival.times.start > this.now)
+ return 'Upcoming Splatfest';
+ return 'Splatfest';
+ },
image() {
if (this.festival)
return Vue.filter('localSplatNetImageUrl')(this.festival.images.panel);