From 08b6b2de289d8d27cc82fc9a523cfbecae93045d Mon Sep 17 00:00:00 2001 From: Heiko Mathes Date: Fri, 17 Jun 2022 23:32:45 +0200 Subject: [PATCH] Sharing: Fix app layout on small screens (#2430) --- frontend/src/share/routes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/share/routes.js b/frontend/src/share/routes.js index 700d3a1bc..4ba1fb241 100644 --- a/frontend/src/share/routes.js +++ b/frontend/src/share/routes.js @@ -15,14 +15,14 @@ export default [ name: "albums", path: "/s/:token", component: Albums, - meta: { title: shareTitle, auth: true }, + meta: { title: shareTitle, auth: true, hideNav: true }, props: { view: "album", staticFilter: { type: "" } }, }, { name: "album", path: "/s/:token/:uid", component: AlbumPhotos, - meta: { title: shareTitle, auth: true }, + meta: { title: shareTitle, auth: true, hideNav: true }, }, { path: "*",