diff --git a/src/components/overview/Overview.vue b/src/components/overview/Overview.vue
index aad07cfb2..f097034c3 100644
--- a/src/components/overview/Overview.vue
+++ b/src/components/overview/Overview.vue
@@ -53,8 +53,8 @@
-
{{ t('deck', 'This week') }}
-
+
{{ t('deck', 'Next 7 days') }}
+
@@ -160,7 +160,7 @@ export default {
overdue: [],
today: [],
tomorrow: [],
- thisWeek: [],
+ nextSevenDays: [],
later: [],
}
dataset.forEach(card => {
@@ -180,7 +180,7 @@ export default {
all.tomorrow.push(card)
}
if (hours >= (48 - currentHour) && hours < (24 * 7)) {
- all.thisWeek.push(card)
+ all.nextSevenDays.push(card)
}
if (hours >= (24 * 7)) {
all.later.push(card)