feat(editor): Always show collapsed panel at the bottom of canvas (#13715)

This commit is contained in:
autologie
2025-03-18 17:09:09 +01:00
committed by GitHub
parent bc15bb18d9
commit 2e9d3ad3e1
19 changed files with 895 additions and 248 deletions

View File

@@ -26,7 +26,7 @@ const ErrorView = async () => await import('./views/ErrorView.vue');
const ForgotMyPasswordView = async () => await import('./views/ForgotMyPasswordView.vue');
const MainHeader = async () => await import('@/components/MainHeader/MainHeader.vue');
const MainSidebar = async () => await import('@/components/MainSidebar.vue');
const CanvasChat = async () => await import('@/components/CanvasChat/CanvasChat.vue');
const CanvasChatSwitch = async () => await import('@/components/CanvasChat/CanvasChatSwitch.vue');
const NodeView = async () => await import('@/views/NodeView.vue');
const WorkflowExecutionsView = async () => await import('@/views/WorkflowExecutionsView.vue');
const WorkflowExecutionsLandingPage = async () =>
@@ -358,7 +358,7 @@ export const routes: RouteRecordRaw[] = [
default: NodeView,
header: MainHeader,
sidebar: MainSidebar,
footer: CanvasChat,
footer: CanvasChatSwitch,
},
meta: {
nodeView: true,
@@ -391,7 +391,7 @@ export const routes: RouteRecordRaw[] = [
default: NodeView,
header: MainHeader,
sidebar: MainSidebar,
footer: CanvasChat,
footer: CanvasChatSwitch,
},
meta: {
nodeView: true,