From 3910c7984846d6e807e4db4485a9759ffe9d989e Mon Sep 17 00:00:00 2001 From: xds Date: Fri, 13 Feb 2026 11:18:37 +0300 Subject: [PATCH] feat: Implement multiple image generation and enhance image preview with navigation and grouping. --- src/components/AppSidebar.vue | 5 +- src/views/FlexibleGenerationView.vue | 425 ++++++++++++++++++++------- 2 files changed, 319 insertions(+), 111 deletions(-) diff --git a/src/components/AppSidebar.vue b/src/components/AppSidebar.vue index 1af1384..f452e93 100644 --- a/src/components/AppSidebar.vue +++ b/src/components/AppSidebar.vue @@ -72,10 +72,9 @@ const navItems = computed(() => { const items = [ { path: '/', icon: '🏠', tooltip: 'Home' }, { path: '/projects', icon: '📂', tooltip: 'Projects' }, - { path: '/flexible', icon: '🖌️', tooltip: 'Flexible Generation' }, + { path: '/flexible', icon: '🖌️', tooltip: 'Flexible' }, { path: '/albums', icon: '🖼️', tooltip: 'Library' }, - { path: '/characters', icon: '👥', tooltip: 'Characters' }, - { path: '/image-to-prompt', icon: '✨', tooltip: 'Image to Prompt' } + { path: '/characters', icon: '👥', tooltip: 'Characters' } ] if (authStore.isAdmin()) { diff --git a/src/views/FlexibleGenerationView.vue b/src/views/FlexibleGenerationView.vue index a51c994..49255f3 100644 --- a/src/views/FlexibleGenerationView.vue +++ b/src/views/FlexibleGenerationView.vue @@ -1,5 +1,5 @@