From 8c18b45e5ca688a689ff1d89b8972751b74eeb7d Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Fri, 17 Oct 2025 09:51:57 +0800 Subject: [PATCH] add link to next ui in webui --- komga-webui/src/views/HomeView.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/komga-webui/src/views/HomeView.vue b/komga-webui/src/views/HomeView.vue index d0da99b3..702eb214 100644 --- a/komga-webui/src/views/HomeView.vue +++ b/komga-webui/src/views/HomeView.vue @@ -309,6 +309,15 @@ {{ $t('navigation.logout') }} + + + + mdi-ab-testing + + + Try the new UI + + @@ -383,6 +392,7 @@ import {LibraryDto} from '@/types/komga-libraries' import {BookSearch, SearchConditionAnyOfBook, SearchConditionMediaStatus, SearchOperatorIs} from '@/types/komga-search' import LibrariesActionsMenu from '@/components/menus/LibrariesActionsMenu.vue' import ReorderLibraries from '@/components/ReorderLibraries.vue' +import urls from '@/functions/urls' export default Vue.extend({ name: 'HomeView', @@ -396,6 +406,7 @@ export default Vue.extend({ }, data: function () { return { + nextUrl: `${urls.originNoSlash}/next`, LIBRARIES_ALL, drawerVisible: this.$vuetify.breakpoint.lgAndUp, locales: this.$i18n.availableLocales.map((x: any) => ({text: this.$i18n.t('common.locale_name', x), value: x})),