From 3e1bf89bdba60e60188960e462de4d335e23b946 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 28 Apr 2021 08:17:52 +0800 Subject: [PATCH] fix(webui): all libraries should show browse view by default --- komga-webui/src/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komga-webui/src/router.ts b/komga-webui/src/router.ts index 534e6c8f2..8f58b1f28 100644 --- a/komga-webui/src/router.ts +++ b/komga-webui/src/router.ts @@ -29,7 +29,7 @@ const getLibraryRoute = (libraryId: string) => { return 'browse-libraries' case LIBRARY_ROUTE.RECOMMENDED: default: - return 'recommended-libraries' + return libraryId === LIBRARIES_ALL ? 'browse-libraries' : 'recommended-libraries' } }