aboutsummaryrefslogtreecommitdiff
path: root/src/boot/routes.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-06-07 16:52:03 +0300
committerHenry Jameson <me@hjkos.com>2022-06-07 16:52:03 +0300
commit9b5fe24ca455af5420a326e78878ca7b35b5bf66 (patch)
tree4dcf510e313480072a40ed8f89abdcc37bffec52 /src/boot/routes.js
parent0aa334515bd67ca69e84177c22273592f694fc28 (diff)
restore notifications page, fix z-index issues
Diffstat (limited to 'src/boot/routes.js')
-rw-r--r--src/boot/routes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/routes.js b/src/boot/routes.js
index 905ffe41..726476a8 100644
--- a/src/boot/routes.js
+++ b/src/boot/routes.js
@@ -62,7 +62,7 @@ export default (store) => {
{ name: 'password-reset', path: '/password-reset', component: PasswordReset, props: true },
{ name: 'registration-token', path: '/registration/:token', component: Registration },
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests, beforeEnter: validateAuthenticatedRoute },
- { name: 'notifications', path: '/:username/notifications', component: Notifications, beforeEnter: validateAuthenticatedRoute },
+ { name: 'notifications', path: '/:username/notifications', component: Notifications, props: () => ({ disableTeleport: true }), beforeEnter: validateAuthenticatedRoute },
{ name: 'login', path: '/login', component: AuthForm },
{ name: 'shout-panel', path: '/shout-panel', component: ShoutPanel, props: () => ({ floating: false }) },
{ name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) },