aboutsummaryrefslogtreecommitdiff
path: root/src/boot
diff options
context:
space:
mode:
authorSean King <seanking2919@protonmail.com>2022-07-10 20:06:18 -0600
committerSean King <seanking2919@protonmail.com>2022-07-10 20:06:18 -0600
commit63519c325f879ea3f64052e39c019267d8238b54 (patch)
tree187a55fb2035ddf93e84d0ce8ec4c9e4c0528be6 /src/boot
parent65b0b69f109c42f07fe14c764d6a4e01bd763a83 (diff)
parentc4cbad0df43a1b0c0644f7818d7e7eca97ceda40 (diff)
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma-fe into add/edit-status
Diffstat (limited to 'src/boot')
-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 }) },