Skip to content

Commit 9802d8f

Browse files
authored
Merge pull request #7989 from nextcloud/fix/make-upcoming-available-again
fix: make upcoming view reachable again
2 parents 3f21b43 + cf80b98 commit 9802d8f

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/components/navigation/AppNavigation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<template #list>
99
<NcAppNavigationItem :name="t('deck', 'Upcoming cards')"
1010
:exact="true"
11-
to="/">
11+
to="/upcoming">
1212
<template #icon>
1313
<CalendarIcon v-if="$route.path === '/'" :size="20" />
1414
<CalendarOutlineIcon v-else :size="20" />

src/router.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ const router = new Router({
3232
name: 'main',
3333
component: Overview,
3434
},
35+
{
36+
path: '/upcoming',
37+
name: 'upcoming',
38+
component: Overview,
39+
},
3540
{
3641
path: '/overview/:filter',
3742
name: 'overview',

0 commit comments

Comments
 (0)